Skip to content

Commit 33a855f

Browse files
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]>
1 parent 056b48f commit 33a855f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
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
@@ -76,7 +76,7 @@ jobs:
7676
file: coverage.xml
7777
if: ${{ always() }}
7878
- name: Upload pytest test results
79-
uses: actions/upload-artifact@v3
79+
uses: actions/upload-artifact@v4
8080
with:
8181
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
8282
path: test-results.xml

.github/workflows/tests.yml

+7-7
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
@@ -150,7 +150,7 @@ jobs:
150150
file: coverage.xml
151151
if: ${{ always() }}
152152
- name: Upload pytest test results
153-
uses: actions/upload-artifact@v3
153+
uses: actions/upload-artifact@v4
154154
with:
155155
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
156156
path: test-results.xml
@@ -162,7 +162,7 @@ jobs:
162162
needs: [stable, test-package]
163163
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
164164
steps:
165-
- uses: actions/download-artifact@v3
165+
- uses: actions/download-artifact@v4
166166
with:
167167
name: dist
168168
path: dist/

0 commit comments

Comments
 (0)