From 5d44ca968c33931996f9fcf9c1fec3287cb7c898 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 16:22:36 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/ci.yml | 4 ++-- .github/workflows/gh-pages.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad239307..0409a6ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: with: python-version: "3.14" - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pipenv key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} @@ -53,7 +53,7 @@ jobs: id: pip-cache run: echo "PIP_CACHE_DIR=$(pip cache dir)" | tee -a "${GITHUB_OUTPUT}" - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.pip-cache.outputs.PIP_CACHE_DIR }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 6dd7940a..d1cf4a38 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -26,7 +26,7 @@ jobs: id: pip-cache run: echo "PIP_CACHE_DIR=$(pip cache dir)" | tee -a "${GITHUB_OUTPUT}" - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.pip-cache.outputs.PIP_CACHE_DIR }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}