Skip to content

Commit d5a8da2

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] <support@github.com>
1 parent e61ac16 commit d5a8da2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Regenerate autogenerated files
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
persist-credentials: false
1818
- run: make codespell_lib/data/dictionary_en_to_en-OX_AUTOGENERATED.txt

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Check for spelling errors
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
persist-credentials: false
1515
- uses: codespell-project/actions-codespell@master

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
package:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
persist-credentials: false
2424
- name: Set up Python

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
os: "windows-latest"
4040
name: "${{ matrix.python-version }} ${{ matrix.kind }} ${{ matrix.os }}"
4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
with:
4444
persist-credentials: false
4545
- name: Setup python
@@ -81,7 +81,7 @@ jobs:
8181
steps:
8282
- name: Setup Python
8383
uses: actions/setup-python@v6
84-
- uses: actions/checkout@v5
84+
- uses: actions/checkout@v6
8585
with:
8686
persist-credentials: false
8787
- name: Install general dependencies

0 commit comments

Comments
 (0)