From 58417f1e8a70468e199d7ad717e478a95407f5bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 06:03:18 +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/check-docs.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-docs.yml b/.github/workflows/check-docs.yml index 1dbd35e..81226d5 100644 --- a/.github/workflows/check-docs.yml +++ b/.github/workflows/check-docs.yml @@ -31,7 +31,7 @@ jobs: - name: Use pip cache id: pip-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.PIP_CACHE_DIR }} key: docs-ubuntu-latest-pip-3.12-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1738560..93a8e13 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -28,7 +28,7 @@ jobs: - name: Use pip cache id: pip-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.PIP_CACHE_DIR }} key: docs-ubuntu-latest-pip-3.12-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 97a9bba..9013aca 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -46,7 +46,7 @@ jobs: - name: Use pip cache id: pip-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.PIP_CACHE_DIR }} key: tests-${{ matrix.os }}-pip-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}