From fc861e249dab25ebda217a4b3a9fffcb1c2818ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 04:49:23 +0000 Subject: [PATCH] Bump actions/cache from 5.0.3 to 5.0.4 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4. - [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/cdf6c1fa76f9f475f3d7449005a359c84ca0f306...668228422ae6a00e4ad889ee87cd7109ec5666a7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/tests_tox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests_tox.yml b/.github/workflows/tests_tox.yml index 9b42c989..9e267b56 100644 --- a/.github/workflows/tests_tox.yml +++ b/.github/workflows/tests_tox.yml @@ -39,7 +39,7 @@ jobs: python -m pip install tox tox-gh-actions>=2.0 - name: Load tox cache - uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae with: path: .tox/ key: ${{ runner.os }}-${{ matrix.python-version }}-tox-v1-${{ hashFiles('**/pyproject.toml') }} @@ -53,7 +53,7 @@ jobs: - name: Save tox cache only on main if: github.ref == 'refs/heads/main' - uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae with: path: .tox/ key: ${{ runner.os }}-${{ matrix.python-version }}-tox-v1-${{ hashFiles('**/pyproject.toml') }}