Skip to content

Commit 2da2e6c

Browse files
Build(deps): Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6c8159a commit 2da2e6c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Codespell
1919
uses: codespell-project/actions-codespell@v2

.github/workflows/docs-build-pr.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

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/docs-build-update.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

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
ssh-key: "${{ secrets.NIPREPS_DEPLOY }}"
1717
fetch-depth: 0

.github/workflows/pythonpackage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
version: ${{ steps.show_version.outputs.version }}
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
3131
- name: Print head git commit message
@@ -53,7 +53,7 @@ jobs:
5353
if: github.repository == 'nipreps/niworkflows'
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v3
56+
- uses: actions/checkout@v4
5757
with:
5858
fetch-depth: 0
5959
- name: Set up Python 3
@@ -136,7 +136,7 @@ jobs:
136136
INSTALL_TYPE: ${{ matrix.install }}
137137

138138
steps:
139-
- uses: actions/checkout@v3
139+
- uses: actions/checkout@v4
140140
if: matrix.install == 'repo' || matrix.install == 'editable'
141141
with:
142142
fetch-depth: 0
@@ -210,7 +210,7 @@ jobs:
210210
steps:
211211
- name: Debug commit message
212212
run: echo "${{ needs.job_metadata.outputs.commit_message }}"
213-
- uses: actions/checkout@v3
213+
- uses: actions/checkout@v4
214214
with:
215215
fetch-depth: 0
216216
- name: Set up Python ${{ matrix.python-version }}
@@ -252,7 +252,7 @@ jobs:
252252
if: github.event_name != 'schedule'
253253
runs-on: ubuntu-latest
254254
steps:
255-
- uses: actions/checkout@v3
255+
- uses: actions/checkout@v4
256256
- name: Set up Python 3
257257
uses: actions/setup-python@v4
258258
with:

0 commit comments

Comments
 (0)