Skip to content

Commit 4cdfa25

Browse files
Build(deps): Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- 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 99df677 commit 4cdfa25

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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@v2
15+
- uses: actions/checkout@v3
1616
- name: Set up Python
1717
uses: actions/setup-python@v2
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@v2
18+
- uses: actions/checkout@v3
1919

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

.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@v2
24+
uses: actions/checkout@v3
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@v2
60+
uses: actions/checkout@v3
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@v2
18+
- uses: actions/checkout@v3
1919
- name: Pull docker image
2020
run: |
2121
docker pull $DOCKER_IMAGE

0 commit comments

Comments
 (0)