Skip to content

Commit 409bc9e

Browse files
Bump actions/cache from 3.3.2 to 4.0.0
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3.3.2...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 051ca99 commit 409bc9e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/checks.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
$GITHUB_OUTPUT
4949
- name: Restore Python virtual environment
5050
id: cache-venv
51-
uses: actions/cache@v3.3.2
51+
uses: actions/cache@v4.0.0
5252
with:
5353
path: .venv
5454
key: >-
@@ -61,7 +61,7 @@ jobs:
6161
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
6262
- name: Restore pre-commit environment
6363
id: cache-precommit
64-
uses: actions/cache@v3.3.2
64+
uses: actions/cache@v4.0.0
6565
with:
6666
path: ${{ env.PRE_COMMIT_CACHE }}
6767
key: >-
@@ -86,14 +86,14 @@ jobs:
8686
check-latest: true
8787
- name: Restore Python virtual environment
8888
id: cache-venv
89-
uses: actions/cache@v3.3.2
89+
uses: actions/cache@v4.0.0
9090
with:
9191
path: .venv
9292
fail-on-cache-miss: true
9393
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ needs.prepare-base.outputs.python-key }}
9494
- name: Restore pre-commit environment
9595
id: cache-precommit
96-
uses: actions/cache@v3.3.2
96+
uses: actions/cache@v4.0.0
9797
with:
9898
path: ${{ env.PRE_COMMIT_CACHE }}
9999
fail-on-cache-miss: true

0 commit comments

Comments
 (0)