Skip to content

Commit 45204dd

Browse files
committed
Fix action version for depcrecation
1 parent 5409c06 commit 45204dd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test_package_build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
run: python -m build
3030
- run: twine check dist/*
3131
- name: Upload sdist and wheel artifacts
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: dist
3535
path: dist/
3636
- name: Build git archive
3737
run: mkdir archive && git archive -v -o archive/archive.tgz HEAD
3838
- name: Upload git archive artifact
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: archive
4242
path: archive/
@@ -51,13 +51,13 @@ jobs:
5151
steps:
5252
- name: Download sdist and wheel artifacts
5353
if: matrix.package != 'archive'
54-
uses: actions/download-artifact@v3
54+
uses: actions/download-artifact@v4
5555
with:
5656
name: dist
5757
path: dist/
5858
- name: Download git archive artifact
5959
if: matrix.package == 'archive'
60-
uses: actions/download-artifact@v3
60+
uses: actions/download-artifact@v4
6161
with:
6262
name: archive
6363
path: archive/
@@ -117,7 +117,7 @@ jobs:
117117
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
118118
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
119119
steps:
120-
- uses: actions/download-artifact@v3
120+
- uses: actions/download-artifact@v4
121121
with:
122122
name: dist
123123
path: dist/

0 commit comments

Comments
 (0)