Skip to content

Commit 6c53f38

Browse files
Bump actions/checkout from 5 to 6 (#1760)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7f762b9 commit 6c53f38

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
lfs: false
2929
- name: Cache tox

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
lfs: true
3737
- name: Cache tox

.github/workflows/run-on-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
return pr.head.sha;
116116
117117
- name: Checkout SHA
118-
uses: actions/checkout@v5
118+
uses: actions/checkout@v6
119119
with:
120120
lfs: true
121121
ref: ${{ steps.sha.outputs.result }}

.github/workflows/run-profiling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
timeout-minutes: 8640
113113
steps:
114114
- name: Checkout repository
115-
uses: actions/checkout@v5
115+
uses: actions/checkout@v6
116116
with:
117117
ref: ${{ github.sha }}
118118
lfs: true

.github/workflows/tests-unpinned.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
lfs: true
2020
- name: Cache tox

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
outputs:
3939
matrix: ${{ steps.set-matrix.outputs.matrix }}
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
with:
4343
# No tests should be under LFS so no need to fetch LFS files
4444
lfs: false
@@ -64,7 +64,7 @@ jobs:
6464
fail-fast: false
6565
matrix: ${{ fromJson(needs.gen-test-matrix.outputs.matrix) }}
6666
steps:
67-
- uses: actions/checkout@v5
67+
- uses: actions/checkout@v6
6868
with:
6969
lfs: true
7070
- name: System info

0 commit comments

Comments
 (0)