From a7e8b57529e8aa7d7cef8c8e56a36c94b71be893 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 01:30:47 +0000 Subject: [PATCH] chore(deps): 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.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/docs.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 233151d..010cc5f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: poetry config virtualenvs.in-project true --local - name: Cache Poetry virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-${{ runner.os }}-py${{ matrix.python }}-${{ hashFiles('poetry.lock') }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a1a2e5..157d402 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: poetry config virtualenvs.in-project true --local - name: Cache Poetry virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-ci-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} @@ -76,7 +76,7 @@ jobs: poetry config virtualenvs.in-project true --local - name: Cache Poetry virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-heavy-${{ runner.os }}-py3.12-${{ hashFiles('poetry.lock') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 951f80e..0fb603f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -29,7 +29,7 @@ jobs: poetry config virtualenvs.in-project true --local - name: Cache Poetry virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-docs-${{ runner.os }}-py3.11-${{ hashFiles('poetry.lock') }}