Skip to content

Commit bedb5b4

Browse files
authored
Merge pull request #3632 from nipy/dependabot/github_actions/actions-infrastructure-a115f6458e
Bump the actions-infrastructure group with 3 updates
2 parents 52d03e2 + caef07b commit bedb5b4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/contrib.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
submodules: recursive
5151
fetch-depth: 0
5252
- name: Set up Python ${{ matrix.python-version }}
53-
uses: actions/setup-python@v4
53+
uses: actions/setup-python@v5
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
- name: Display Python version
@@ -77,7 +77,7 @@ jobs:
7777
token: ${{ secrets.CODECOV_TOKEN }}
7878
if: ${{ always() }}
7979
- name: Upload pytest test results
80-
uses: actions/upload-artifact@v3
80+
uses: actions/upload-artifact@v4
8181
with:
8282
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
8383
path: test-results.xml

.github/workflows/tests.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
- uses: actions/checkout@v4
4141
with:
4242
fetch-depth: 0
43-
- uses: actions/setup-python@v4
43+
- uses: actions/setup-python@v5
4444
with:
4545
python-version: 3
4646
- run: pip install --upgrade build twine
4747
- name: Build sdist and wheel
4848
run: python -m build
4949
- run: twine check dist/*
50-
- uses: actions/upload-artifact@v3
50+
- uses: actions/upload-artifact@v4
5151
with:
5252
name: dist
5353
path: dist/
@@ -59,11 +59,11 @@ jobs:
5959
matrix:
6060
package: ['wheel', 'sdist']
6161
steps:
62-
- uses: actions/download-artifact@v3
62+
- uses: actions/download-artifact@v4
6363
with:
6464
name: dist
6565
path: dist/
66-
- uses: actions/setup-python@v4
66+
- uses: actions/setup-python@v5
6767
with:
6868
python-version: 3
6969
- name: Display Python version
@@ -124,7 +124,7 @@ jobs:
124124
steps:
125125
- uses: actions/checkout@v4
126126
- name: Set up Python ${{ matrix.python-version }}
127-
uses: actions/setup-python@v4
127+
uses: actions/setup-python@v5
128128
with:
129129
python-version: ${{ matrix.python-version }}
130130
- name: Display Python version
@@ -151,9 +151,9 @@ jobs:
151151
token: ${{ secrets.CODECOV_TOKEN }}
152152
if: ${{ always() }}
153153
- name: Upload pytest test results
154-
uses: actions/upload-artifact@v3
154+
uses: actions/upload-artifact@v4
155155
with:
156-
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
156+
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.deb-depends }}
157157
path: test-results.xml
158158
if: ${{ always() && matrix.check == 'test' }}
159159

@@ -163,7 +163,7 @@ jobs:
163163
needs: [stable, test-package]
164164
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
165165
steps:
166-
- uses: actions/download-artifact@v3
166+
- uses: actions/download-artifact@v4
167167
with:
168168
name: dist
169169
path: dist/

0 commit comments

Comments
 (0)