Skip to content

Commit 5e4f2f9

Browse files
dependabot[bot]effigies
authored andcommitted
Build(deps): Bump the actions-infrastructure group with 3 updates
Bumps the actions-infrastructure group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure ... Signed-off-by: dependabot[bot] <[email protected]> Update .github/workflows/test.yml
1 parent 83613ab commit 5e4f2f9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v4
4545
with:
4646
fetch-depth: 0
47-
- uses: actions/setup-python@v4
47+
- uses: actions/setup-python@v5
4848
with:
4949
python-version: 3
5050
- run: pip install --upgrade build twine
@@ -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@v3
57+
uses: actions/upload-artifact@v4
5858
with:
5959
name: dist
6060
path: dist/
6161
- name: Upload git archive artifact
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: archive
6565
path: archive/
@@ -73,17 +73,17 @@ jobs:
7373
steps:
7474
- name: Download sdist and wheel artifacts
7575
if: matrix.package != 'archive'
76-
uses: actions/download-artifact@v3
76+
uses: actions/download-artifact@v4
7777
with:
7878
name: dist
7979
path: dist/
8080
- name: Download git archive artifact
8181
if: matrix.package == 'archive'
82-
uses: actions/download-artifact@v3
82+
uses: actions/download-artifact@v4
8383
with:
8484
name: archive
8585
path: archive/
86-
- uses: actions/setup-python@v4
86+
- uses: actions/setup-python@v5
8787
with:
8888
python-version: 3
8989
- name: Display Python version
@@ -147,7 +147,7 @@ jobs:
147147
submodules: recursive
148148
fetch-depth: 0
149149
- name: Set up Python ${{ matrix.python-version }}
150-
uses: actions/setup-python@v4
150+
uses: actions/setup-python@v5
151151
with:
152152
python-version: ${{ matrix.python-version }}
153153
architecture: ${{ matrix.architecture }}
@@ -167,9 +167,9 @@ jobs:
167167
with:
168168
files: cov.xml
169169
- name: Upload pytest test results
170-
uses: actions/upload-artifact@v3
170+
uses: actions/upload-artifact@v4
171171
with:
172-
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
172+
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.dependencies }}-${{ matrix.architecture }}
173173
path: test-results.xml
174174
if: ${{ always() }}
175175

@@ -183,7 +183,7 @@ jobs:
183183
steps:
184184
- uses: actions/checkout@v4
185185
- name: Set up Python ${{ matrix.python-version }}
186-
uses: actions/setup-python@v4
186+
uses: actions/setup-python@v5
187187
with:
188188
python-version: 3
189189
- name: Display Python version
@@ -204,7 +204,7 @@ jobs:
204204
id-token: write
205205
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
206206
steps:
207-
- uses: actions/download-artifact@v3
207+
- uses: actions/download-artifact@v4
208208
with:
209209
name: dist
210210
path: dist/

0 commit comments

Comments
 (0)