Skip to content

Commit 7ed9e2f

Browse files
Bump actions/checkout from 4 to 5 (#780)
1 parent 4c46826 commit 7ed9e2f

17 files changed

+21
-21
lines changed

.github/workflows/Benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
### Setup ###
2828

29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030

3131
- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
3232
with:

.github/workflows/CargoAudit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
audit:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
# We are not using the common workflow here because it installs a bunch of tools we don't need.
1919
# TODO: Once the runner image is updated to include the necessary tools (without downloading), we can switch to the common workflow.

.github/workflows/CargoPublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
if: ${{ startsWith(github.ref, 'refs/heads/release/v') || inputs.dry_run }}
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
fetch-tags: true

.github/workflows/CleanUpReleasesAndPackages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
GITHUB_TOKEN: ${{ github.token }}
3030

31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232

3333
- name: Delete old Github Actions Artifacts
3434
env:

.github/workflows/CreateDevcontainerImage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
- name: Read Rust toolchain version from ${{ env.RUST_TOOLCHAIN_FILE }}
3636
id: toolchain

.github/workflows/CreateRelease.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
needs: [release-blocker-check]
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333

3434
- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
3535
with:
@@ -50,7 +50,7 @@ jobs:
5050
needs: [release-blocker-check]
5151

5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454

5555
- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
5656
with:
@@ -107,7 +107,7 @@ jobs:
107107
if: ${{ contains(github.ref, 'refs/heads/release/') }}
108108
run: echo "CONFIG=release" >> $GITHUB_ENV
109109

110-
- uses: actions/checkout@v4
110+
- uses: actions/checkout@v5
111111
with:
112112
fetch-depth: 0
113113
fetch-tags: true

.github/workflows/CreateReleaseBranch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- name: Create Release Branch
2323
run: |

.github/workflows/IssueLabelChecker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
labeler:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Check and Add label
1616
run: |
1717
# The cryptic head -c -1 is because otherwise gh always terminates output with a newline

.github/workflows/PRLabelChecker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
check-labels:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Ensure exactly one "kind/*" label is applied
1616
run: |
1717
# Count the number of "kind/*" labels directly from the PR labels

.github/workflows/ReleaseBlockerCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
check-blockers:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

2828
- name: Check for Release Blocking Issues
2929
run: |

0 commit comments

Comments
 (0)