Skip to content

Commit 250e684

Browse files
dependabot[bot]mr-c
authored andcommitted
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] <[email protected]>
1 parent 135a0c6 commit 250e684

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/ci-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
TOXENV: ${{ format('py{0}{1}-{2}', matrix.py-ver-major, matrix.py-ver-minor, matrix.step) }}
4141

4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 0
4646

@@ -103,7 +103,7 @@ jobs:
103103
TOXENV: ${{ format('py313-{0}', matrix.step) }}
104104

105105
steps:
106-
- uses: actions/checkout@v5
106+
- uses: actions/checkout@v6
107107
with:
108108
fetch-depth: 0
109109

@@ -131,7 +131,7 @@ jobs:
131131
env:
132132
py-semver: "3.13"
133133
steps:
134-
- uses: actions/checkout@v5
134+
- uses: actions/checkout@v6
135135
with:
136136
fetch-depth: 0
137137

@@ -181,7 +181,7 @@ jobs:
181181
extras: "--relax-path-checks"
182182

183183
steps:
184-
- uses: actions/checkout@v5
184+
- uses: actions/checkout@v6
185185

186186
- name: Set up Singularity and environment-modules
187187
if: ${{ matrix.container == 'singularity' }}
@@ -230,7 +230,7 @@ jobs:
230230
runs-on: ubuntu-22.04
231231

232232
steps:
233-
- uses: actions/checkout@v5
233+
- uses: actions/checkout@v6
234234

235235
- name: Set up Singularity and environment-modules
236236
run: |
@@ -262,7 +262,7 @@ jobs:
262262
build_test_container:
263263
runs-on: ubuntu-latest
264264
steps:
265-
- uses: actions/checkout@v5
265+
- uses: actions/checkout@v6
266266
with:
267267
fetch-depth: 0
268268
- name: record cwltool version
@@ -276,7 +276,7 @@ jobs:
276276
env:
277277
TOXENV: py313-unit
278278
steps:
279-
- uses: actions/checkout@v5
279+
- uses: actions/checkout@v6
280280
with:
281281
fetch-depth: 0
282282
- name: Set up Python

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
# Initializes the CodeQL tools for scanning.
2929
- name: Initialize CodeQL

.github/workflows/quay-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0
1414
- name: Get image tags

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
build: "*musllinux*"
2828

2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
if: ${{ github.event_name != 'repository_dispatch' }}
3232
with:
3333
fetch-depth: 0 # slow, but gets all the tags
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
if: ${{ github.event_name == 'repository_dispatch' }}
3636
with:
3737
fetch-depth: 0 # slow, but gets all the tags
@@ -63,11 +63,11 @@ jobs:
6363
name: Build source distribution
6464
runs-on: ubuntu-24.04
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
if: ${{ github.event_name != 'repository_dispatch' }}
6868
with:
6969
fetch-depth: 0 # slow, but gets all the tags
70-
- uses: actions/checkout@v5
70+
- uses: actions/checkout@v6
7171
if: ${{ github.event_name == 'repository_dispatch' }}
7272
with:
7373
fetch-depth: 0 # slow, but gets all the tags
@@ -89,11 +89,11 @@ jobs:
8989
# macos-15-intel is an intel runner, macos-14 is apple silicon
9090
os: [macos-15-intel, macos-14, macos-15]
9191
steps:
92-
- uses: actions/checkout@v5
92+
- uses: actions/checkout@v6
9393
if: ${{ github.event_name != 'repository_dispatch' }}
9494
with:
9595
fetch-depth: 0 # slow, but gets all the tags
96-
- uses: actions/checkout@v5
96+
- uses: actions/checkout@v6
9797
if: ${{ github.event_name == 'repository_dispatch' }}
9898
with:
9999
fetch-depth: 0 # slow, but gets all the tags

0 commit comments

Comments
 (0)