From 435a4232bc9a6b6db6cdbdd4f8922442e4b53ddf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 11:05:51 +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/tox.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index a0c7991..c2706c8 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -66,7 +66,7 @@ jobs: if: ${{ ! matrix.skip_vagrant }} - name: Cache Vagrant boxes - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.vagrant.d/boxes key: ${{ runner.os }}-vagrant-${{ hashFiles('**/Vagrantfile') }} @@ -82,14 +82,14 @@ jobs: python-version: ${{ matrix.python-version }} - name: Enable vagrant box caching - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: | ~/.vagrant.d/boxes key: ${{ runner.os }}-${{ matrix.tox_env }}-vagrantbox-${{ hashFiles('tests/tools/create_dummy_box.sh', 'tests/test_vagrant*py', '**/Vagrantfile', 'tests/vagrantfiles/*Vagrantfile') }} - name: Pip cache - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.tox_env }}-pip-${{ hashFiles('constraints.txt', 'setup.cfg', 'tox.ini', 'pyproject.toml', '.pre-commit-config.yaml', 'pytest.ini') }}