From 042a6a6833c55ee275807d294893b281cbbfc5ae Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:42:48 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 588a8f7..c368b11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,13 +31,13 @@ jobs: echo "$HOME/.poetry/bin" >> $GITHUB_PATH - name: Cache Poetry cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: poetry-cache-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ env.MAIN_PYTHON_VERSION }}-${{ env.POETRY_VERSION }} - name: Cache packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: poetry-packages-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ env.MAIN_PYTHON_VERSION }}-${{ hashFiles('**/poetry.lock') }} @@ -70,13 +70,13 @@ jobs: echo "$HOME/.poetry/bin" >> $GITHUB_PATH - name: Cache Poetry cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: poetry-cache-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ matrix.python-version }}-${{ env.POETRY_VERSION }} - name: Cache packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: poetry-packages-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}