Skip to content

Commit

Permalink
Merge remote-tracking branches 'upstream/dependabot/github_actions/ac…
Browse files Browse the repository at this point in the history
…tions-infrastructure-3f8b52ffcc' and 'upstream/dependabot/github_actions/codecov/codecov-action-4'
  • Loading branch information
effigies committed Sep 17, 2024
3 parents 4b3ae02 + c93ddda + fad8fd7 commit e13d0d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build package
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
- run: pipx run flake8 nitransforms
10 changes: 5 additions & 5 deletions .github/workflows/travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
git ls-remote https://gin.g-node.org/oesteban/nitransforms-tests \
| awk '/HEAD/{ print "SHA=" $1 }' >> $GITHUB_OUTPUT
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.TEST_DATA_HOME }}
key: data-cache-v2-${{ steps.test-head.outputs.SHA }}
Expand Down Expand Up @@ -69,15 +69,15 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: ${{ env.TEST_DATA_HOME }}
key: data-cache-v2-${{ needs.cache-test-data.outputs.SHA }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install minimal dependencies
run: |
pip install .[tests]
Expand All @@ -86,6 +86,6 @@ jobs:
pytest -v --cov nitransforms --cov-config .coveragerc --cov-report xml:cov.xml --doctest-modules nitransforms/
- name: Submit code coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: cov.xml

0 comments on commit e13d0d8

Please sign in to comment.