Skip to content

Commit 7bcc7f4

Browse files
authored
Use actions/cache@v3 (#1033)
Based on https://github.com/actions/cache/blob/main/RELEASES.md I cannot find any BC breaks
1 parent 1d61dbc commit 7bcc7f4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
key: "extcache-v1"
3838

3939
- name: Cache extensions
40-
uses: actions/cache@v2
40+
uses: actions/cache@v3
4141
with:
4242
path: ${{ steps.extcache.outputs.dir }}
4343
key: ${{ steps.extcache.outputs.key }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
key: "extcache-v1"
3838

3939
- name: Cache extensions
40-
uses: actions/cache@v2
40+
uses: actions/cache@v3
4141
with:
4242
path: ${{ steps.extcache.outputs.dir }}
4343
key: ${{ steps.extcache.outputs.key }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
key: "extcache-v1"
8282

8383
- name: Cache extensions
84-
uses: actions/cache@v2
84+
uses: actions/cache@v3
8585
with:
8686
path: ${{ steps.extcache.outputs.dir }}
8787
key: ${{ steps.extcache.outputs.key }}

0 commit comments

Comments
 (0)