Skip to content

Commit 0f73626

Browse files
dependabot[bot]mr-c
authored andcommitted
build(deps): 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 d9d9ac1 commit 0f73626

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/ci-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
py-semver: ${{ format('{0}.{1}', matrix.py-ver-major, matrix.py-ver-minor) }}
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333

@@ -76,7 +76,7 @@ jobs:
7676
TOXENV: ${{ matrix.step }}
7777

7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v5
8080
with:
8181
fetch-depth: 0
8282

@@ -102,7 +102,7 @@ jobs:
102102
name: Confirm that codegen typescript passes tests with CWL
103103
runs-on: ubuntu-24.04
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106
- name: Set up Node
107107
uses: actions/setup-node@v4
108108
- name: Set up Python
@@ -138,7 +138,7 @@ jobs:
138138
steps:
139139
- name: Install C++ dependencies
140140
run: sudo apt-get install libyaml-cpp-dev
141-
- uses: actions/checkout@v4
141+
- uses: actions/checkout@v5
142142
- name: Set up Python
143143
uses: actions/setup-python@v5
144144
with:
@@ -166,7 +166,7 @@ jobs:
166166
runs-on: ubuntu-24.04
167167

168168
steps:
169-
- uses: actions/checkout@v4
169+
- uses: actions/checkout@v5
170170

171171
- name: Set up Python
172172
uses: actions/setup-python@v5
@@ -192,7 +192,7 @@ jobs:
192192
build_test_container:
193193
runs-on: ubuntu-24.04
194194
steps:
195-
- uses: actions/checkout@v4
195+
- uses: actions/checkout@v5
196196
- name: record schema-salad version
197197
run: |
198198
python3 -m venv env

.github/workflows/codeql-analysis.yml

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

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
# We must fetch at least the immediate parents so that if this is
2828
# a pull request then we can checkout the head.

.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
- name: Get image tags
1313
id: image_tags
1414
run: |

.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@v4
30+
- uses: actions/checkout@v5
3131
if: ${{ github.event_name != 'repository_dispatch' }}
3232
with:
3333
fetch-depth: 0 # slow, but gets all the tags
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
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@v4
66+
- uses: actions/checkout@v5
6767
if: ${{ github.event_name != 'repository_dispatch' }}
6868
with:
6969
fetch-depth: 0 # slow, but gets all the tags
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v5
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-13 is an intel runner, macos-14 is apple silicon
9090
os: [macos-13, macos-14]
9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
if: ${{ github.event_name != 'repository_dispatch' }}
9494
with:
9595
fetch-depth: 0 # slow, but gets all the tags
96-
- uses: actions/checkout@v4
96+
- uses: actions/checkout@v5
9797
if: ${{ github.event_name == 'repository_dispatch' }}
9898
with:
9999
fetch-depth: 0 # slow, but gets all the tags

0 commit comments

Comments
 (0)