Skip to content

Commit ef237fb

Browse files
authored
Merge pull request #601 from nipy/update-actions
Update GitHub Actions action versions
2 parents 93bc82b + 8b8d805 commit ef237fb

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
commit-message:
8+
prefix: "[gh-actions]"
9+
include: scope
10+
labels:
11+
- internal

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout source
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
1313
steps:
1414
- name: Checkout source
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
1818

@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Set up Python
3636
if: steps.auto-version.outputs.version != ''
37-
uses: actions/setup-python@v2
37+
uses: actions/setup-python@v4
3838
with:
3939
python-version: '^3.7'
4040

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: coverage run `which pytest` -s -v heudiconv
5454

5555
- name: Upload coverage to Codecov
56-
uses: codecov/codecov-action@v2
56+
uses: codecov/codecov-action@v3
5757
with:
5858
fail_ci_if_error: false
5959

0 commit comments

Comments
 (0)