From d1999e1dde5620e56558c75bdea766b49bf3ffa3 Mon Sep 17 00:00:00 2001 From: Saurabh Chopra Date: Wed, 6 Nov 2024 11:26:13 +0000 Subject: [PATCH] upgrade artifacts action version --- .github/workflows/build.yml | 4 ++-- .github/workflows/deploy.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3e0a2e..d6b5536 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 73caad9..1852e7e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 }} @@ -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 }}