Skip to content

Commit 435a423

Browse files
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](actions/cache@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] <support@github.com>
1 parent ea764e5 commit 435a423

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tox.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
if: ${{ ! matrix.skip_vagrant }}
6767

6868
- name: Cache Vagrant boxes
69-
uses: actions/cache@v3
69+
uses: actions/cache@v5
7070
with:
7171
path: ~/.vagrant.d/boxes
7272
key: ${{ runner.os }}-vagrant-${{ hashFiles('**/Vagrantfile') }}
@@ -82,14 +82,14 @@ jobs:
8282
python-version: ${{ matrix.python-version }}
8383

8484
- name: Enable vagrant box caching
85-
uses: actions/cache@v3
85+
uses: actions/cache@v5
8686
with:
8787
path: |
8888
~/.vagrant.d/boxes
8989
key: ${{ runner.os }}-${{ matrix.tox_env }}-vagrantbox-${{ hashFiles('tests/tools/create_dummy_box.sh', 'tests/test_vagrant*py', '**/Vagrantfile', 'tests/vagrantfiles/*Vagrantfile') }}
9090

9191
- name: Pip cache
92-
uses: actions/cache@v3
92+
uses: actions/cache@v5
9393
with:
9494
path: ~/.cache/pip
9595
key: ${{ runner.os }}-${{ matrix.tox_env }}-pip-${{ hashFiles('constraints.txt', 'setup.cfg', 'tox.ini', 'pyproject.toml', '.pre-commit-config.yaml', 'pytest.ini') }}

0 commit comments

Comments
 (0)