Skip to content

Commit f1dc431

Browse files
chore(deps): bump actions/checkout in the github-actions group (#3836)
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6bcf517 commit f1dc431

13 files changed

+31
-31
lines changed

.github/workflows/benchmark-machine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-22.04
2020
steps:
2121
- name: Checkout codes on ${{ github.ref }}
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525

.github/workflows/benchmark-runtime-weights.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-22.04
4040
steps:
4141
- name: Checkout code
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
fetch-depth: 0
4545

@@ -90,7 +90,7 @@ jobs:
9090
echo "CHAIN=$chain" >> $GITHUB_ENV
9191
9292
- name: Checkout code
93-
uses: actions/checkout@v5
93+
uses: actions/checkout@v6
9494
with:
9595
fetch-depth: 0
9696

.github/workflows/build-docker-with-args.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-22.04
3131
steps:
3232
- name: Checkout codes on ${{ github.event.inputs.ref || github.ref }}
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
with:
3535
ref: ${{ github.event.inputs.ref || github.ref }}
3636
fetch-depth: 0

.github/workflows/build-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323
steps:
2424
- name: Checkout codes on ${{ github.event.inputs.ref || github.ref }}
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
ref: ${{ github.event.inputs.ref || github.ref }}
2828
fetch-depth: 0

.github/workflows/check-runtime-upgrade.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
outputs:
2727
skip_simulation: ${{ steps.check.outputs.skip_simulation }}
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030

3131
- id: check
3232
run: |
@@ -43,7 +43,7 @@ jobs:
4343
runtime: ${{ steps.runtime.outputs.runtime }}
4444
name: Parse runtime matrix
4545
steps:
46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747

4848
- id: runtime
4949
run: |
@@ -70,7 +70,7 @@ jobs:
7070
name: ${{ matrix.runtime.name }}
7171
steps:
7272
- name: Checkout codes on ${{ github.ref }}
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
with:
7575
fetch-depth: 0
7676

@@ -101,7 +101,7 @@ jobs:
101101
name: ${{ matrix.runtime.name }}
102102
steps:
103103
- name: Checkout codes on ${{ github.ref }}
104-
uses: actions/checkout@v5
104+
uses: actions/checkout@v6
105105
with:
106106
fetch-depth: 0
107107

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
run_parachain_test: ${{ steps.env.outputs.run_parachain_test }}
9494
run_omni_executor_test: ${{ steps.env.outputs.run_omni_executor_test }}
9595
steps:
96-
- uses: actions/checkout@v5
96+
- uses: actions/checkout@v6
9797
with:
9898
fetch-depth: 0
9999

@@ -145,7 +145,7 @@ jobs:
145145
fmt:
146146
runs-on: ubuntu-22.04
147147
steps:
148-
- uses: actions/checkout@v5
148+
- uses: actions/checkout@v6
149149

150150
- name: Install rust toolchain
151151
run: rustup show
@@ -208,7 +208,7 @@ jobs:
208208
- sequentialise
209209
if: needs.set-condition.outputs.rebuild_omni_executor == 'true'
210210
steps:
211-
- uses: actions/checkout@v5
211+
- uses: actions/checkout@v6
212212

213213
- name: Free up disk space
214214
if: startsWith(runner.name, 'GitHub Actions')
@@ -234,7 +234,7 @@ jobs:
234234
- set-condition
235235
- sequentialise
236236
steps:
237-
- uses: actions/checkout@v5
237+
- uses: actions/checkout@v6
238238

239239
- name: Free up disk space
240240
if: startsWith(runner.name, 'GitHub Actions')
@@ -278,7 +278,7 @@ jobs:
278278
- set-condition
279279
- sequentialise
280280
steps:
281-
- uses: actions/checkout@v5
281+
- uses: actions/checkout@v6
282282

283283
- name: Free up disk space
284284
if: startsWith(runner.name, 'GitHub Actions')
@@ -336,7 +336,7 @@ jobs:
336336
- sequentialise
337337
if: needs.set-condition.outputs.rebuild_contract == 'true'
338338
steps:
339-
- uses: actions/checkout@v5
339+
- uses: actions/checkout@v6
340340
with:
341341
submodules: recursive
342342
fetch-depth: 0
@@ -406,7 +406,7 @@ jobs:
406406
- paseo
407407
name: ${{ matrix.chain }}
408408
steps:
409-
- uses: actions/checkout@v5
409+
- uses: actions/checkout@v6
410410

411411
- uses: actions/download-artifact@v6
412412
with:
@@ -474,7 +474,7 @@ jobs:
474474
# run_parachain_test is related to ts-tests only
475475
if: needs.set-condition.outputs.rebuild_parachain == 'true'
476476
steps:
477-
- uses: actions/checkout@v5
477+
- uses: actions/checkout@v6
478478

479479
- name: Free up disk space
480480
if: startsWith(runner.name, 'GitHub Actions')
@@ -533,7 +533,7 @@ jobs:
533533
# - test_name: omni-account-test
534534
name: ${{ matrix.test_name }}
535535
steps:
536-
- uses: actions/checkout@v5
536+
- uses: actions/checkout@v6
537537

538538
- uses: actions/download-artifact@v6
539539
with:

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
actions: read # Required for Claude to read CI results on PRs
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
submodules: recursive
3232
fetch-depth: 0

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
outputs:
1616
coverage_src: ${{ steps.filter.outputs.coverage_src }}
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121

@@ -36,7 +36,7 @@ jobs:
3636
needs.check-file-change.outputs.coverage_src == 'true'
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Install toolchain
4242
run: rustup show

.github/workflows/create-release-draft.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
name: ${{ matrix.chain }}
7575
steps:
7676
- name: Checkout codes on ${{ env.RELEASE_TAG }}
77-
uses: actions/checkout@v5
77+
uses: actions/checkout@v6
7878
with:
7979
ref: ${{ env.RELEASE_TAG }}
8080
fetch-depth: 0
@@ -112,7 +112,7 @@ jobs:
112112
runs-on: ubuntu-22.04
113113
steps:
114114
- name: Checkout codes on ${{ env.RELEASE_TAG }}
115-
uses: actions/checkout@v5
115+
uses: actions/checkout@v6
116116
with:
117117
ref: ${{ env.RELEASE_TAG }}
118118
fetch-depth: 0
@@ -158,7 +158,7 @@ jobs:
158158
environment: production
159159
steps:
160160
- name: Checkout codes on ${{ env.RELEASE_TAG }}
161-
uses: actions/checkout@v5
161+
uses: actions/checkout@v6
162162
with:
163163
ref: ${{ env.RELEASE_TAG }}
164164
fetch-depth: 0
@@ -215,7 +215,7 @@ jobs:
215215
name: ${{ matrix.chain }}
216216
steps:
217217
- name: Checkout codes
218-
uses: actions/checkout@v5
218+
uses: actions/checkout@v6
219219
with:
220220
fetch-depth: 0
221221

@@ -282,7 +282,7 @@ jobs:
282282
(success('build-parachain-runtime') || success('parachain-ts-tests') || success('build-omni-executor'))
283283
steps:
284284
- name: Checkout codes on ${{ env.RELEASE_TAG }}
285-
uses: actions/checkout@v5
285+
uses: actions/checkout@v6
286286
with:
287287
ref: ${{ env.RELEASE_TAG }}
288288
fetch-depth: 0

.github/workflows/create-release-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Checkout codes on ${{ github.ref }}
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
ref: ${{ github.ref }}
1717
fetch-depth: 0

0 commit comments

Comments
 (0)