Skip to content

Commit

Permalink
upgrade artifacts action version
Browse files Browse the repository at this point in the history
  • Loading branch information
saurbhc committed Nov 6, 2024
1 parent 103eb57 commit d1999e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
output-dir: dist
config-file: "{package}/pyproject.toml"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ env.RELEASE_VERSION != ''}}
with:
name: ${{ env.RELEASE_VERSION }}-wheels
Expand All @@ -56,7 +56,7 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine
python setup.py sdist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: ${{ env.RELEASE_VERSION != ''}}
with:
name: ${{ env.RELEASE_VERSION }}-sdist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v2

- name: Retrieve wheel artifacts for release
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v6
with:
name: ${{ github.event.release.name }}-wheels
repo: ${{ github.repository }}
Expand All @@ -36,7 +36,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Retrieve SDIST artifacts for release
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v6
with:
name: ${{ github.event.release.name }}-sdist
repo: ${{ github.repository }}
Expand Down

0 comments on commit d1999e1

Please sign in to comment.