Skip to content

Commit 3cc1f8b

Browse files
chore(deps): update actions/cache action to v3
1 parent feb393a commit 3cc1f8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
with:
2424
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2525
- name: Cache SonarCloud packages
26-
uses: actions/cache@v1
26+
uses: actions/cache@v3
2727
with:
2828
path: ~\sonar\cache
2929
key: ${{ runner.os }}-sonar
3030
restore-keys: ${{ runner.os }}-sonar
3131
- name: Cache SonarCloud scanner
3232
id: cache-sonar-scanner
33-
uses: actions/cache@v1
33+
uses: actions/cache@v3
3434
with:
3535
path: .\.sonar\scanner
3636
key: ${{ runner.os }}-sonar-scanner

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
version="${GITHUB_REF#refs/heads/release/}"
3030
git tag "${version}"
3131
- name: Cache SonarCloud packages
32-
uses: actions/cache@v1
32+
uses: actions/cache@v3
3333
with:
3434
path: ~\sonar\cache
3535
key: ${{ runner.os }}-sonar
3636
restore-keys: ${{ runner.os }}-sonar
3737
- name: Cache SonarCloud scanner
3838
id: cache-sonar-scanner
39-
uses: actions/cache@v1
39+
uses: actions/cache@v3
4040
with:
4141
path: .\.sonar\scanner
4242
key: ${{ runner.os }}-sonar-scanner

0 commit comments

Comments
 (0)