Skip to content

Commit c8e31fb

Browse files
dependabot[bot]yarikoptic
authored andcommitted
[gh-actions](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 5877794 commit c8e31fb

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

.github/workflows/build-linux-buildenv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout this repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Build image
2323
working-directory: .github/workflows/tools/containers/buildenv-git-annex

.github/workflows/build-macos.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
build-version: ${{ steps.build-version.outputs.version }}
3030
steps:
3131
- name: Checkout this repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
fetch-depth: 0
3535

@@ -197,7 +197,7 @@ jobs:
197197
fail-fast: false
198198
steps:
199199
- name: Checkout this repository
200-
uses: actions/checkout@v4
200+
uses: actions/checkout@v5
201201

202202
- name: Create pending PR status
203203
if: github.event.inputs.pr != ''
@@ -333,7 +333,7 @@ jobs:
333333
needs: build-package
334334
steps:
335335
- name: Checkout this repository
336-
uses: actions/checkout@v4
336+
uses: actions/checkout@v5
337337

338338
- name: Create pending PR status
339339
if: github.event.inputs.pr != ''
@@ -390,7 +390,7 @@ jobs:
390390
fail-fast: false
391391
steps:
392392
- name: Checkout this repository
393-
uses: actions/checkout@v4
393+
uses: actions/checkout@v5
394394

395395
- name: Create pending PR status
396396
if: github.event.inputs.pr != ''
@@ -448,7 +448,7 @@ jobs:
448448

449449
# needed for ssh certs under ubuntu and tox.ini everywhere
450450
- name: Checkout datalad
451-
uses: actions/checkout@v4
451+
uses: actions/checkout@v5
452452
with:
453453
repository: datalad/datalad
454454
path: datalad

.github/workflows/build-ubuntu.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
build-version: ${{ steps.build-version.outputs.version }}
3333
steps:
3434
- name: Checkout this repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838

@@ -151,7 +151,7 @@ jobs:
151151
152152
- name: Clone datalad/git-annex-ci-client-jobs
153153
if: contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
154-
uses: actions/checkout@v4
154+
uses: actions/checkout@v5
155155
with:
156156
repository: datalad/git-annex-ci-client-jobs
157157
fetch-depth: 1
@@ -252,7 +252,7 @@ jobs:
252252
fail-fast: false
253253
steps:
254254
- name: Checkout this repository
255-
uses: actions/checkout@v4
255+
uses: actions/checkout@v5
256256

257257
- name: Create pending PR status
258258
if: github.event.inputs.pr != ''
@@ -382,7 +382,7 @@ jobs:
382382
needs: build-package
383383
steps:
384384
- name: Checkout this repository
385-
uses: actions/checkout@v4
385+
uses: actions/checkout@v5
386386

387387
- name: Create pending PR status
388388
if: github.event.inputs.pr != ''
@@ -436,7 +436,7 @@ jobs:
436436
fail-fast: false
437437
steps:
438438
- name: Checkout this repository
439-
uses: actions/checkout@v4
439+
uses: actions/checkout@v5
440440

441441
- name: Create pending PR status
442442
if: github.event.inputs.pr != ''
@@ -498,7 +498,7 @@ jobs:
498498

499499
# needed for ssh certs under ubuntu and tox.ini everywhere
500500
- name: Checkout datalad
501-
uses: actions/checkout@v4
501+
uses: actions/checkout@v5
502502
with:
503503
repository: datalad/datalad
504504
path: datalad

.github/workflows/build-windows.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
build-version: ${{ steps.build-version.outputs.version }}
3030
steps:
3131
- name: Checkout this repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
fetch-depth: 0
3535

@@ -219,7 +219,7 @@ jobs:
219219
fail-fast: false
220220
steps:
221221
- name: Checkout this repository
222-
uses: actions/checkout@v4
222+
uses: actions/checkout@v5
223223

224224
- name: Create pending PR status
225225
if: github.event.inputs.pr != ''
@@ -325,7 +325,7 @@ jobs:
325325
fail-fast: false
326326
steps:
327327
- name: Checkout this repository
328-
uses: actions/checkout@v4
328+
uses: actions/checkout@v5
329329

330330
- name: Create pending PR status
331331
if: github.event.inputs.pr != ''
@@ -432,7 +432,7 @@ jobs:
432432

433433
# needed for ssh certs under ubuntu and tox.ini everywhere
434434
- name: Checkout datalad
435-
uses: actions/checkout@v4
435+
uses: actions/checkout@v5
436436
with:
437437
repository: datalad/datalad
438438
path: datalad

.github/workflows/daily-status.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout this repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: Checkout ci-reports repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
repository: datalad/git-annex-ci-reports
1919
token: ${{ secrets.DATALAD_GITHUB_TOKEN }}

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Set up Python
1717
uses: actions/setup-python@v5

.github/workflows/update-mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout this repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
ref: upstream/master

0 commit comments

Comments
 (0)