Skip to content

Commit 786a7b0

Browse files
committed
Update artifact upload/download actions
1 parent 90ecaea commit 786a7b0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
python -m tox run-parallel -m ci -- --junitxml pytest.{envname}.xml
101101
python -m tox run -e cov
102102
103-
- uses: actions/upload-artifact@v3
103+
- uses: actions/upload-artifact@v4
104104
with:
105105
name: pytest-report-py${{ matrix.py }}-${{ matrix.os }}
106106
path: pytest.*.xml
@@ -115,7 +115,7 @@ jobs:
115115
with:
116116
python-version: "3.x"
117117
# download everything
118-
- uses: actions/download-artifact@v3
118+
- uses: actions/download-artifact@v4
119119
with:
120120
path: artifacts/
121121
# collate and report

.github/workflows/publish_to_pypi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Check Dists (twine)
2323
run: twine check dist/*
2424

25-
- uses: actions/upload-artifact@v3
25+
- uses: actions/upload-artifact@v4
2626
with:
2727
name: packages
2828
path: dist/*
@@ -35,7 +35,7 @@ jobs:
3535
id-token: write
3636

3737
steps:
38-
- uses: actions/download-artifact@v3
38+
- uses: actions/download-artifact@v4
3939
with:
4040
name: packages
4141
path: dist
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949

5050
steps:
51-
- uses: actions/download-artifact@v3
51+
- uses: actions/download-artifact@v4
5252
with:
5353
name: packages
5454
path: dist

.github/workflows/publish_to_test_pypi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Check Dists (twine)
3838
run: twine check dist/*
3939

40-
- uses: actions/upload-artifact@v3
40+
- uses: actions/upload-artifact@v4
4141
with:
4242
name: packages
4343
path: dist/*
@@ -51,7 +51,7 @@ jobs:
5151
id-token: write
5252

5353
steps:
54-
- uses: actions/download-artifact@v3
54+
- uses: actions/download-artifact@v4
5555
with:
5656
name: packages
5757
path: dist

0 commit comments

Comments
 (0)