Skip to content

Commit 79ea514

Browse files
Bump actions/checkout from 5 to 6 (#482)
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 1c0e38a commit 79ea514

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout Code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Run markdownlint-cli
2525
uses: nosborn/[email protected]
2626
with:
@@ -38,7 +38,7 @@ jobs:
3838
- '3.12'
3939
- '3.13'
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
- name: Set up Python
4343
uses: actions/setup-python@v6
4444
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push' && startsWith(github.event.workflow_run.head_branch, 'v') }}
1818
steps:
1919
- name: Check out the repository including tags
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event.workflow_run.head_sha }}
2323
fetch-depth: 0
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
if: ${{ needs.validate-tag.outputs.valid_tag == 'true' && github.event.workflow_run.conclusion == 'success' }}
5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555

5656
- name: Set up Python
5757
uses: actions/setup-python@v6

.github/workflows/sync-test-fixtures.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
- name: Sync fixtures
1515
run: |
1616
TMP_DIR=$(mktemp -d)

0 commit comments

Comments
 (0)