Skip to content

Commit 01326f2

Browse files
dependabot[bot]mr-c
authored andcommitted
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a0477e1 commit 01326f2

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@v4
43+
- uses: actions/checkout@v5
4444
with:
4545
fetch-depth: 0
4646

@@ -100,7 +100,7 @@ jobs:
100100
TOXENV: ${{ format('py312-{0}', matrix.step) }}
101101

102102
steps:
103-
- uses: actions/checkout@v4
103+
- uses: actions/checkout@v5
104104
with:
105105
fetch-depth: 0
106106

@@ -128,7 +128,7 @@ jobs:
128128
env:
129129
py-semver: "3.12"
130130
steps:
131-
- uses: actions/checkout@v4
131+
- uses: actions/checkout@v5
132132
with:
133133
fetch-depth: 0
134134

@@ -178,7 +178,7 @@ jobs:
178178
extras: "--relax-path-checks"
179179

180180
steps:
181-
- uses: actions/checkout@v4
181+
- uses: actions/checkout@v5
182182

183183
- name: Set up Singularity and environment-modules
184184
if: ${{ matrix.container == 'singularity' }}
@@ -227,7 +227,7 @@ jobs:
227227
runs-on: ubuntu-22.04
228228

229229
steps:
230-
- uses: actions/checkout@v4
230+
- uses: actions/checkout@v5
231231

232232
- name: Set up Singularity and environment-modules
233233
run: |
@@ -259,7 +259,7 @@ jobs:
259259
build_test_container:
260260
runs-on: ubuntu-latest
261261
steps:
262-
- uses: actions/checkout@v4
262+
- uses: actions/checkout@v5
263263
with:
264264
fetch-depth: 0
265265
- name: record cwltool version
@@ -273,7 +273,7 @@ jobs:
273273
env:
274274
TOXENV: py312-unit
275275
steps:
276-
- uses: actions/checkout@v4
276+
- uses: actions/checkout@v5
277277
with:
278278
fetch-depth: 0
279279
- 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@v4
26+
uses: actions/checkout@v5
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@v4
11+
- uses: actions/checkout@v5
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
@@ -26,11 +26,11 @@ jobs:
2626
build: "*musllinux*"
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
if: ${{ github.event_name != 'repository_dispatch' }}
3131
with:
3232
fetch-depth: 0 # slow, but gets all the tags
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
if: ${{ github.event_name == 'repository_dispatch' }}
3535
with:
3636
fetch-depth: 0 # slow, but gets all the tags
@@ -66,11 +66,11 @@ jobs:
6666
name: Build source distribution
6767
runs-on: ubuntu-24.04
6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
7070
if: ${{ github.event_name != 'repository_dispatch' }}
7171
with:
7272
fetch-depth: 0 # slow, but gets all the tags
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474
if: ${{ github.event_name == 'repository_dispatch' }}
7575
with:
7676
fetch-depth: 0 # slow, but gets all the tags
@@ -92,11 +92,11 @@ jobs:
9292
# macos-13 is an intel runner, macos-14 is apple silicon
9393
os: [macos-13, macos-14]
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v5
9696
if: ${{ github.event_name != 'repository_dispatch' }}
9797
with:
9898
fetch-depth: 0 # slow, but gets all the tags
99-
- uses: actions/checkout@v4
99+
- uses: actions/checkout@v5
100100
if: ${{ github.event_name == 'repository_dispatch' }}
101101
with:
102102
fetch-depth: 0 # slow, but gets all the tags

0 commit comments

Comments
 (0)