Skip to content

Commit b43af3d

Browse files
Bump actions/checkout from 6 to 7 in the github group
Bumps the github group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 61c4d56 commit b43af3d

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/finalized_specs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
modified: ${{ steps.changes.outputs.modified }}
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717
with:
1818
fetch-depth: 0
1919
- id: changes

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313
with:
1414
fetch-depth: 0
1515
- uses: actions/setup-node@v6

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v6
25+
- uses: actions/checkout@v7
2626
with:
2727
fetch-depth: 0
2828
- uses: astral-sh/setup-uv@v7

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# IMPORTANT: this permission is mandatory for trusted publishing
1111
id-token: write
1212
steps:
13-
- uses: actions/checkout@v6
13+
- uses: actions/checkout@v7
1414
with:
1515
fetch-depth: 0
1616
- name: Set up uv

.github/workflows/pythontest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2828
steps:
29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v7
3030
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
3131
with:
3232
fetch-depth: 0
@@ -50,7 +50,7 @@ jobs:
5050
container:
5151
image: python:${{ matrix.python-version }}-buster
5252
steps:
53-
- uses: actions/checkout@v6
53+
- uses: actions/checkout@v7
5454
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
5555
- name: Install dependencies and run tests
5656
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}

0 commit comments

Comments
 (0)