Skip to content

Commit bde8dde

Browse files
authored
Merge pull request #37 from pylint-dev/dependabot/github_actions/actions/cache-4.0.0
2 parents 051ca99 + 409bc9e commit bde8dde

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)