Skip to content

Commit 6cc9eba

Browse files
committedMar 25, 2025·
chore: Upgrade actions/upload-artifact and actions/download-artifact to v4
1 parent 70b429c commit 6cc9eba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎.github/workflows/deploy_to_pypi.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Build a binary wheel and a source tarball
6161
run: python3 -m build
6262
- name: Store the distribution packages
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: python-package-distributions
6666
path: dist/
@@ -78,7 +78,7 @@ jobs:
7878

7979
steps:
8080
- name: Download all the dists
81-
uses: actions/download-artifact@v3
81+
uses: actions/download-artifact@v4
8282
with:
8383
name: python-package-distributions
8484
path: dist/
@@ -96,7 +96,7 @@ jobs:
9696

9797
steps:
9898
- name: Download all the dists
99-
uses: actions/download-artifact@v3
99+
uses: actions/download-artifact@v4
100100
with:
101101
name: python-package-distributions
102102
path: dist/
@@ -137,7 +137,7 @@ jobs:
137137

138138
steps:
139139
- name: Download all the dists
140-
uses: actions/download-artifact@v3
140+
uses: actions/download-artifact@v4
141141
with:
142142
name: python-package-distributions
143143
path: dist/

0 commit comments

Comments
 (0)
Please sign in to comment.