Skip to content

Commit c365fad

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

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
# For tags we assume the version in setup.py is correct!
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
submodules: 'recursive'
1717
- name: Rewrite version for dev if not tag

.github/workflows/linting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
name: Linting
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
submodules: 'recursive'
2121
- name: Set up Python 3.11
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
name: Code Format
3535
steps:
36-
- uses: actions/checkout@v5
36+
- uses: actions/checkout@v6
3737
with:
3838
submodules: 'recursive'
3939
- name: Set up Python 3.11
@@ -55,7 +55,7 @@ jobs:
5555
matrix:
5656
python-version: [ "3.11", "3.12", "3.13" ]
5757
steps:
58-
- uses: actions/checkout@v5
58+
- uses: actions/checkout@v6
5959
with:
6060
submodules: 'recursive'
6161
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: [ "3.11", "3.12", "3.13" ]
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
submodules: 'recursive'
2626
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)