From d13882467780ec7375974ae9627caa1965767f21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 06:03:10 +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 a59f74d..37ac961 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.11-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 42ec0a2..176ee8f 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.11-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e7a066c..61a24ac 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') }}