From 33c4d93b2a477757cec4fa7d5339ade54da7a47c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 09:01:09 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_offline_docs.yml | 4 ++-- .github/workflows/check_urls.yml | 2 +- .github/workflows/ci.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_offline_docs.yml b/.github/workflows/build_offline_docs.yml index 14b0a3b56..905a13780 100644 --- a/.github/workflows/build_offline_docs.yml +++ b/.github/workflows/build_offline_docs.yml @@ -34,7 +34,7 @@ jobs: echo "PYTHON_VERSION=$(python --version)" >> $GITHUB_OUTPUT - name: Restore cached virtualenv - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv @@ -50,7 +50,7 @@ jobs: sudo apt install parallel libwebp7 imagemagick - name: Save virtualenv cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv diff --git a/.github/workflows/check_urls.yml b/.github/workflows/check_urls.yml index 7359b526e..7e1420687 100644 --- a/.github/workflows/check_urls.yml +++ b/.github/workflows/check_urls.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v5 - name: Restore lychee cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .lycheecache key: cache-lychee-${{ github.sha }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56d772aab..9f9ce5c5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: echo "PYTHON_VERSION=$(python --version)" >> $GITHUB_OUTPUT - name: Restore cached virtualenv - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv @@ -43,7 +43,7 @@ jobs: echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV - name: Save virtualenv cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv