Skip to content

Commit bc7f688

Browse files
committed
CI: Upgrade actions
1 parent 49d52d3 commit bc7f688

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0
2929
- name: Build in confined, updated environment and interpolate version
@@ -89,9 +89,9 @@ jobs:
8989
if: "!contains(github.event.head_commit.message, '[skip ci]')"
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/checkout@v2
92+
- uses: actions/checkout@v3
9393
- name: Set up Python 3.7
94-
uses: actions/setup-python@v1
94+
uses: actions/setup-python@v4
9595
with:
9696
python-version: 3.7
9797
- run: pip install flake8

.github/workflows/travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
git config --global user.name 'NiPreps Bot'
2020
git config --global user.email '[email protected]'
2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2323
with:
2424
python-version: ${{ matrix.python-version }}
25-
- uses: actions/cache@v2
25+
- uses: actions/cache@v3
2626
id: conda
2727
with:
2828
path: |
@@ -36,7 +36,7 @@ jobs:
3636
$CONDA/bin/conda install -c conda-forge git-annex datalad pip codecov pytest
3737
$CONDA/bin/python -m pip install datalad-osf
3838
39-
- uses: actions/cache@v2
39+
- uses: actions/cache@v3
4040
with:
4141
path: ${{ env.TEST_DATA_HOME }}
4242
key: data-cache-v2
@@ -53,7 +53,7 @@ jobs:
5353
$CONDA/bin/datalad update --merge -d nitransforms-tests/
5454
$CONDA/bin/datalad get -d nitransforms-tests/
5555
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v3
5757
- name: Install minimal dependencies
5858
run: |
5959
$CONDA/bin/pip install .[tests]

0 commit comments

Comments
 (0)