Skip to content

Commit d55e06c

Browse files
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 91c5a15 commit d55e06c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up Python
1717
uses: actions/setup-python@v4
1818
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: Prepare repository
2121
# Fetch full git history and tags

.github/workflows/testdask.yml

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
repository: ${{ github.repository }}
3030

.github/workflows/testpydra.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- uses: actions/setup-python@v4
@@ -80,7 +80,7 @@ jobs:
8080
name: archive
8181
path: archive/
8282
- name: Fetch repository
83-
uses: actions/checkout@v3
83+
uses: actions/checkout@v4
8484
if: matrix.install == 'repo'
8585

8686
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}

.github/workflows/testsingularity.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
echo "RELEASE_VERSION=v3.7.1" >> $GITHUB_ENV
2222
echo "NO_ET=TRUE" >> $GITHUB_ENV
2323
- name: Setup Singularity
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
repository: hpcng/singularity
2727
ref: 'v3.7.1'
@@ -57,7 +57,7 @@ jobs:
5757

5858

5959
- name: Checkout Pydra repo
60-
uses: actions/checkout@v3
60+
uses: actions/checkout@v4
6161
with:
6262
repository: ${{ github.repository }}
6363
- name: Install pydra (test)

.github/workflows/testslurm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Disable etelemetry
1717
run: echo "NO_ET=TRUE" >> $GITHUB_ENV
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Pull docker image
2020
run: |
2121
docker pull $DOCKER_IMAGE

0 commit comments

Comments
 (0)