Skip to content

Commit 85fea3e

Browse files
yasseralemanclaude
andcommitted
Fix deprecated actions/upload-artifact and download-artifact to v4
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 70590fa commit 85fea3e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/workflows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: python -m build
3131

3232
- name: Upload distribution packages
33-
uses: actions/upload-artifact@v3
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: python-distributions
3636
path: dist/
@@ -42,7 +42,7 @@ jobs:
4242
if: github.ref == 'refs/heads/main' # Only publish to TestPyPI from main branch
4343
steps:
4444
- name: Download distribution packages
45-
uses: actions/download-artifact@v3
45+
uses: actions/download-artifact@v4
4646
with:
4747
name: python-distributions
4848
path: dist/
@@ -61,7 +61,7 @@ jobs:
6161
if: startsWith(github.ref, 'refs/tags/v') # Only publish on version tag
6262
steps:
6363
- name: Download distribution packages
64-
uses: actions/download-artifact@v3
64+
uses: actions/download-artifact@v4
6565
with:
6666
name: python-distributions
6767
path: dist/

0 commit comments

Comments
 (0)