From aef8edfe3bd84c2dc45c7dd88e56acc83d3b4f1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 18:43:24 +0000 Subject: [PATCH] Bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d1dbe80..ad24687 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,7 +48,7 @@ jobs: fetch-depth: 1 - name: Cache pip packages - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python }}-${{ hashFiles('**/requirements.txt') }} @@ -57,7 +57,7 @@ jobs: ${{ runner.os }}-pip- - name: Cache Poetry virtual environment - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: .venv key: ${{ runner.os }}-poetry-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} @@ -92,7 +92,7 @@ jobs: - name: Cache macOS dependencies if: matrix.os == 'macos-latest' - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/brew-cache key: macos-brew-${{ hashFiles('**/Dockerfile') }} @@ -164,7 +164,7 @@ jobs: print("::set-output name=result::{}".format(result)) - name: Restore pre-commit cache - uses: actions/cache@v3 + uses: actions/cache@v5 if: matrix.session == 'pre-commit' with: path: ~/.cache/pre-commit