Skip to content

Commit 486e47b

Browse files
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0b6195c commit 486e47b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ jobs:
3838
run: |
3939
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
4040
- name: Persistent Github pip cache
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
with:
4343
path: ${{ steps.pip-cache.outputs.dir }}
4444
key: pip-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'setup.cfg', 'setup.py', 'Makefile') }}
4545
restore-keys: |
4646
pip-${{ runner.os }}-${{ matrix.python-version }}-
4747
pip-${{ runner.os }}-
4848
- name: Persistent Github venv cache
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: .venv/
5252
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'setup.cfg', 'setup.py', 'Makefile') }}

0 commit comments

Comments
 (0)