From 7c1beb73ee30f17128233ff5a05d7f03accec1d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:26:46 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 5 in /.github/workflows 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/docs.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index dd74532..58b68ac 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,7 +32,7 @@ jobs: with: python-version: '3.11' - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-docs-${{ hashFiles('**/pyproject.toml') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a4cba9..cd4cd99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,7 +52,7 @@ jobs: poetry config virtualenvs.create true poetry config virtualenvs.in-project true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} @@ -112,7 +112,7 @@ jobs: poetry config virtualenvs.create true poetry config virtualenvs.in-project true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-ubuntu-py3.11-${{ hashFiles('**/poetry.lock') }}