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] 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