From f61204c4b11acb8998ed028ed718cb8dbc6ca357 Mon Sep 17 00:00:00 2001 From: Miguel Sozinho Ramalho <19508417+msramalho@users.noreply.github.com> Date: Thu, 9 Jan 2025 14:57:37 +0000 Subject: [PATCH 1/2] Update main.yml from migration guide no breaking changes apply here. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 48c25be..28b415f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -82,7 +82,7 @@ jobs: - name: Upload package distribution files if: matrix.task.name == 'Build' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: package path: dist @@ -117,7 +117,7 @@ jobs: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV - name: Download package distribution files - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: package path: dist From e6fdd545186b35edf3f0576c82de860f1f1fcee7 Mon Sep 17 00:00:00 2001 From: Miguel Sozinho Ramalho <19508417+msramalho@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:05:01 +0000 Subject: [PATCH 2/2] cache v2 is also being deprecated https://github.com/actions/cache/discussions/1510 --- .github/actions/setup-venv/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-venv/action.yml b/.github/actions/setup-venv/action.yml index a0ddf79..c53c9e0 100644 --- a/.github/actions/setup-venv/action.yml +++ b/.github/actions/setup-venv/action.yml @@ -31,7 +31,7 @@ runs: # Get the exact Python version to use in the cache key. echo "PYTHON_VERSION=$(python --version)" >> $GITHUB_ENV - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: virtualenv-cache with: path: .venv