Skip to content

Commit 8b2c7f9

Browse files
Bump actions/checkout from 5 to 6 (#1035)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9ab8884 commit 8b2c7f9

19 files changed

+23
-23
lines changed

.github/workflows/Benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
### Setup ###
3131

32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333

3434
- uses: hyperlight-dev/ci-setup-workflow@v1.8.0
3535
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@v5
16+
- uses: actions/checkout@v6
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@v5
30+
- uses: actions/checkout@v6
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@v5
31+
- uses: actions/checkout@v6
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@v5
33+
uses: actions/checkout@v6
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@v5
32+
- uses: actions/checkout@v6
3333

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

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

5555
- uses: hyperlight-dev/ci-setup-workflow@v1.8.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@v5
110+
- uses: actions/checkout@v6
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@v5
20+
- uses: actions/checkout@v6
2121

2222
- name: Create Release Branch
2323
run: |

.github/workflows/Fuzzing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
issues: write
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Notify Fuzzing Failure
3131
run: ./dev/notify-ci-failure.sh --labels="area/fuzzing,area/testing,lifecycle/needs-review,release-blocker"

.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@v5
14+
- uses: actions/checkout@v6
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@v5
14+
- uses: actions/checkout@v6
1515
- name: Ensure exactly one "kind/*" label is applied
1616
run: |
1717
# Count the number of "kind/*" labels directly from the PR labels

0 commit comments

Comments
 (0)