Skip to content

Commit e13d0d8

Browse files
committed
Merge remote-tracking branches 'upstream/dependabot/github_actions/actions-infrastructure-3f8b52ffcc' and 'upstream/dependabot/github_actions/codecov/codecov-action-4'
3 parents 4b3ae02 + c93ddda + fad8fd7 commit e13d0d8

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/pythonpackage.yml

+4-4
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@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929
- name: Build package
@@ -90,7 +90,7 @@ jobs:
9090
if: "!contains(github.event.head_commit.message, '[skip ci]')"
9191
runs-on: ubuntu-latest
9292
steps:
93-
- uses: actions/checkout@v3
93+
- uses: actions/checkout@v4
9494
- name: Set up Python 3
95-
uses: actions/setup-python@v4
95+
uses: actions/setup-python@v5
9696
- run: pipx run flake8 nitransforms

.github/workflows/travis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
git ls-remote https://gin.g-node.org/oesteban/nitransforms-tests \
4141
| awk '/HEAD/{ print "SHA=" $1 }' >> $GITHUB_OUTPUT
4242
43-
- uses: actions/cache@v3
43+
- uses: actions/cache@v4
4444
with:
4545
path: ${{ env.TEST_DATA_HOME }}
4646
key: data-cache-v2-${{ steps.test-head.outputs.SHA }}
@@ -69,15 +69,15 @@ jobs:
6969
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
7070
steps:
7171
- name: Set up Python ${{ matrix.python-version }}
72-
uses: actions/setup-python@v4
72+
uses: actions/setup-python@v5
7373
with:
7474
python-version: ${{ matrix.python-version }}
75-
- uses: actions/cache/restore@v3
75+
- uses: actions/cache/restore@v4
7676
with:
7777
path: ${{ env.TEST_DATA_HOME }}
7878
key: data-cache-v2-${{ needs.cache-test-data.outputs.SHA }}
7979

80-
- uses: actions/checkout@v3
80+
- uses: actions/checkout@v4
8181
- name: Install minimal dependencies
8282
run: |
8383
pip install .[tests]
@@ -86,6 +86,6 @@ jobs:
8686
pytest -v --cov nitransforms --cov-config .coveragerc --cov-report xml:cov.xml --doctest-modules nitransforms/
8787
8888
- name: Submit code coverage
89-
uses: codecov/codecov-action@v3
89+
uses: codecov/codecov-action@v4
9090
with:
9191
files: cov.xml

0 commit comments

Comments
 (0)