Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
- name: Build git archive
run: mkdir archive && git archive -v -o archive/nibabel-archive.tgz HEAD
- name: Upload sdist and wheel artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist
path: dist/
- name: Upload git archive artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: archive
path: archive/
Expand All @@ -73,13 +73,13 @@ jobs:
steps:
- name: Download sdist and wheel artifacts
if: matrix.package != 'archive'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist
path: dist/
- name: Download git archive artifact
if: matrix.package == 'archive'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: archive
path: archive/
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
files: cov.xml
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload pytest test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.dependencies }}-${{ matrix.architecture }}
path: test-results.xml
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
id-token: write
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: dist
path: dist/
Expand Down