From b9cd76deaa3e148e38f93094dc5457e6ce103690 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 19:37:55 +0000 Subject: [PATCH] Update actions/cache action to v6 --- .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 e3d3e54..cbac1f5 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@v4 + uses: actions/cache@v6 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@v4 + uses: actions/cache@v6 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@v4 + uses: actions/cache@v6 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@v4 + uses: actions/cache@v6 with: path: .venv key: poetry-packages-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}