Skip to content

Commit a5254fa

Browse files
chore(deps): bump the actions-infrastructure group with 2 updates
Bumps the actions-infrastructure group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9dc9bb0 commit a5254fa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ jobs:
5454
- name: Build git archive
5555
run: mkdir archive && git archive -v -o archive/nibabel-archive.tgz HEAD
5656
- name: Upload sdist and wheel artifacts
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v5
5858
with:
5959
name: dist
6060
path: dist/
6161
- name: Upload git archive artifact
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v5
6363
with:
6464
name: archive
6565
path: archive/
@@ -73,13 +73,13 @@ jobs:
7373
steps:
7474
- name: Download sdist and wheel artifacts
7575
if: matrix.package != 'archive'
76-
uses: actions/download-artifact@v5
76+
uses: actions/download-artifact@v6
7777
with:
7878
name: dist
7979
path: dist/
8080
- name: Download git archive artifact
8181
if: matrix.package == 'archive'
82-
uses: actions/download-artifact@v5
82+
uses: actions/download-artifact@v6
8383
with:
8484
name: archive
8585
path: archive/
@@ -251,7 +251,7 @@ jobs:
251251
files: cov.xml
252252
token: ${{ secrets.CODECOV_TOKEN }}
253253
- name: Upload pytest test results
254-
uses: actions/upload-artifact@v4
254+
uses: actions/upload-artifact@v5
255255
with:
256256
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.dependencies }}-${{ matrix.architecture }}
257257
path: test-results.xml
@@ -288,7 +288,7 @@ jobs:
288288
id-token: write
289289
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
290290
steps:
291-
- uses: actions/download-artifact@v5
291+
- uses: actions/download-artifact@v6
292292
with:
293293
name: dist
294294
path: dist/

0 commit comments

Comments
 (0)