From 6e8aba960ccc9ca9e0a3210e49a9c3833b3b06a2 Mon Sep 17 00:00:00 2001 From: Ricardo Vieira Date: Tue, 2 Jan 2024 11:50:25 +0100 Subject: [PATCH] Revert "Bump actions/download-artifact from 3 to 4" This reverts commit 0fc2cd8e11be7a4d679cc78a3a8c0d4f825a2db6. --- .github/workflows/pypi.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 2b1195aeb6..960049db1e 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -60,7 +60,7 @@ jobs: needs: [make_sdist,build_wheels] runs-on: ubuntu-22.04 steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: artifact path: dist @@ -83,7 +83,7 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: artifact path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d25257e1a..dc0e3f821c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -256,7 +256,7 @@ jobs: python -m pip install -U coverage>=5.1 coveralls - name: Download coverage file - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: coverage path: coverage