Skip to content

Commit f4a1f52

Browse files
committed
CI: Update build OS, actions
1 parent 59833da commit f4a1f52

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/contrib.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525
strategy:
2626
matrix:
27-
os: ['ubuntu-18.04']
27+
os: ['ubuntu-latest']
2828
python-version: [3.8]
2929
nipype-extras: ['dev']
3030
check: ['specs', 'style']
@@ -38,12 +38,12 @@ jobs:
3838
CI_SKIP_TEST: 1
3939

4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
with:
4343
submodules: recursive
4444
fetch-depth: 0
4545
- name: Set up Python ${{ matrix.python-version }}
46-
uses: actions/setup-python@v2
46+
uses: actions/setup-python@v4
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949
- name: Display Python version
@@ -64,12 +64,12 @@ jobs:
6464
- name: Run tests
6565
run: tools/ci/check.sh
6666
if: ${{ matrix.check != 'skiptests' }}
67-
- uses: codecov/codecov-action@v1
67+
- uses: codecov/codecov-action@v3
6868
with:
6969
file: coverage.xml
7070
if: ${{ always() }}
7171
- name: Upload pytest test results
72-
uses: actions/upload-artifact@v2
72+
uses: actions/upload-artifact@v3
7373
with:
7474
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
7575
path: test-results.xml

.github/workflows/package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- os: ubuntu-latest
2727
python-version: 3.8
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030
- name: Set up Python ${{ matrix.python-version }}
31-
uses: actions/setup-python@v2
31+
uses: actions/setup-python@v4
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434
- name: Display Python version

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ jobs:
5454
CI_SKIP_TEST: 1
5555

5656
steps:
57-
- uses: actions/checkout@v2
57+
- uses: actions/checkout@v3
5858
with:
5959
submodules: recursive
6060
fetch-depth: 0
6161
- name: Set up Python ${{ matrix.python-version }}
62-
uses: actions/setup-python@v2
62+
uses: actions/setup-python@v4
6363
with:
6464
python-version: ${{ matrix.python-version }}
6565
- name: Display Python version
@@ -80,12 +80,12 @@ jobs:
8080
- name: Run tests
8181
run: tools/ci/check.sh
8282
if: ${{ matrix.check != 'skiptests' }}
83-
- uses: codecov/codecov-action@v1
83+
- uses: codecov/codecov-action@v3
8484
with:
8585
file: coverage.xml
8686
if: ${{ always() }}
8787
- name: Upload pytest test results
88-
uses: actions/upload-artifact@v2
88+
uses: actions/upload-artifact@v3
8989
with:
9090
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
9191
path: test-results.xml

0 commit comments

Comments
 (0)