Skip to content

Commit 4045188

Browse files
Bump actions/checkout from 5 to 6 in the actions group (#117)
Bumps the 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: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9b58dd1 commit 4045188

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/check-for-updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: needs.check-pr-exists.outputs.pr_exists == 'false' # Run only if no PR exists
3737
steps:
3838
- name: Check out repository (shallow)
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 1 # Shallow clone to save time
4242

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
permissions:
2525
id-token: write
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- name: Set up Python
2929
uses: actions/setup-python@v6
3030
with:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
container:
2828
image: ${{ matrix.use-container && format('python:{0}', matrix.python-version) || '' }}
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- if: ${{ !matrix.use-container }}
3232
name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} (non-containers)
3333
uses: actions/setup-python@v6
@@ -51,7 +51,7 @@ jobs:
5151
TOXENV: ${{ matrix.toxenv }}
5252

5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555
- name: ${{ matrix.toxenv }}
5656
uses: actions/setup-python@v6
5757
with:

0 commit comments

Comments
 (0)