Skip to content

Commit 95e44e4

Browse files
Bump actions/cache from 4.0.1 to 4.0.2
Bumps [actions/cache](https://github.com/actions/cache) from 4.0.1 to 4.0.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.0.1...v4.0.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 359da3b commit 95e44e4

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
@@ -42,7 +42,7 @@ jobs:
4242
hashFiles('pyproject.toml', 'requirements/**.txt') }}" >> $GITHUB_OUTPUT
4343
- name: Restore Python virtual environment
4444
id: cache-venv
45-
uses: actions/cache@v4.0.1
45+
uses: actions/cache@v4.0.2
4646
with:
4747
path: .venv
4848
key: >-
@@ -55,7 +55,7 @@ jobs:
5555
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
5656
- name: Restore pre-commit environment
5757
id: cache-precommit
58-
uses: actions/cache@v4.0.1
58+
uses: actions/cache@v4.0.2
5959
with:
6060
path: ${{ env.PRE_COMMIT_CACHE }}
6161
key: >-
@@ -80,14 +80,14 @@ jobs:
8080
check-latest: true
8181
- name: Restore Python virtual environment
8282
id: cache-venv
83-
uses: actions/cache@v4.0.1
83+
uses: actions/cache@v4.0.2
8484
with:
8585
path: .venv
8686
fail-on-cache-miss: true
8787
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ needs.prepare-base.outputs.python-key }}
8888
- name: Restore pre-commit environment
8989
id: cache-precommit
90-
uses: actions/cache@v4.0.1
90+
uses: actions/cache@v4.0.2
9191
with:
9292
path: ${{ env.PRE_COMMIT_CACHE }}
9393
fail-on-cache-miss: true

0 commit comments

Comments
 (0)