From 831f7edf7fca8f7083e330dfb364b28baff6c4d0 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 18 Sep 2024 15:58:04 +0530 Subject: [PATCH] Bump upload-artifact to v4 - Use the same major version for upload-artifact and download-artifact Signed-off-by: Keshav Priyadarshi --- .github/workflows/pypi-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 63e4aaa65..600b046d4 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -37,7 +37,7 @@ jobs: run: python -m build --sdist --wheel --outdir dist/ - name: Upload built archives - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pypi_archives path: dist/* @@ -51,7 +51,7 @@ jobs: steps: - name: Download built archives - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: pypi_archives path: dist @@ -71,7 +71,7 @@ jobs: steps: - name: Download built archives - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: name: pypi_archives path: dist