Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v4
if: ${{ !matrix.settings.docker }}
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
timeout-minutes: 120
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Cache Node Modules
id: cache-node-modules
uses: actions/cache@v4
Expand Down Expand Up @@ -399,7 +399,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
if: startsWith(github.ref_name, 'v4')
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Necessary to find the commits included in the release
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{matrix.settings.ref}}
- name: Install Toolchain
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
name: Report Performance
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.number }}/merge
- name: Install Toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repl-artefacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Upload
steps:
- name: Checkout Commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: refs/pull/${{ github.event.number }}/merge
- name: Install Toolchain
Expand Down
Loading