Skip to content

Commit 99e995d

Browse files
Bump actions/checkout from 5 to 6
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] <[email protected]>
1 parent 5528700 commit 99e995d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ jobs:
221221
runs-on: ${{ matrix.container }}
222222

223223
steps:
224-
- uses: actions/checkout@v5
224+
- uses: actions/checkout@v6
225225
with:
226226
fetch-depth: 0
227227

@@ -620,7 +620,7 @@ jobs:
620620
runs-on: ubuntu-latest
621621

622622
steps:
623-
- uses: actions/checkout@v5
623+
- uses: actions/checkout@v6
624624
with:
625625
fetch-depth: 0
626626

@@ -672,7 +672,7 @@ jobs:
672672
if: needs.prereqs.outputs.DO_HW_TESTS == 'true'
673673

674674
steps:
675-
- uses: actions/checkout@v5
675+
- uses: actions/checkout@v6
676676
with:
677677
fetch-depth: 0
678678

@@ -721,7 +721,7 @@ jobs:
721721
run: |
722722
echo raspberry_pi_artifact=toit-rpi.tar.gz >> $GITHUB_OUTPUT
723723
724-
- uses: actions/checkout@v5
724+
- uses: actions/checkout@v6
725725
with:
726726
fetch-depth: 0
727727

@@ -1058,7 +1058,7 @@ jobs:
10581058
if: needs.prereqs.outputs.RUN_WINDOWS_SIGN_FLOW == 'true'
10591059

10601060
steps:
1061-
- uses: actions/checkout@v5
1061+
- uses: actions/checkout@v6
10621062

10631063
- name: Install dependencies
10641064
shell: powershell
@@ -1156,7 +1156,7 @@ jobs:
11561156
if: needs.prereqs.outputs.RUN_MACOS_SIGN_FLOW == 'true'
11571157

11581158
steps:
1159-
- uses: actions/checkout@v5
1159+
- uses: actions/checkout@v6
11601160

11611161
- name: Install dependencies
11621162
run: |
@@ -1350,7 +1350,7 @@ jobs:
13501350
steps:
13511351
# This shouldn't be necessary, but the archlinux-package-action
13521352
# doesn't work without it.
1353-
- uses: actions/checkout@v5
1353+
- uses: actions/checkout@v6
13541354

13551355
- name: Ssh
13561356
env:
@@ -1411,7 +1411,7 @@ jobs:
14111411
run: |
14121412
rm -rf ${{ github.workspace }}/*
14131413
1414-
- uses: actions/checkout@v5
1414+
- uses: actions/checkout@v6
14151415

14161416
# We need a more recent version of cmake than is installed globally.
14171417
- name: Add local bin to PATH

.github/workflows/tar-ball.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout repository without submodules
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
submodules: false
3535
fetch-depth: 0 # Fetch all history so the archive has correct metadata.
@@ -238,7 +238,7 @@ jobs:
238238
steps:
239239
# This shouldn't be necessary, but the archlinux-package-action
240240
# doesn't work without it.
241-
- uses: actions/checkout@v5
241+
- uses: actions/checkout@v6
242242

243243
- name: Ssh
244244
env:

0 commit comments

Comments
 (0)