Skip to content

Commit b134fb7

Browse files
authored
fix: resolve deprecation on actions/cache step (#76)
1 parent b10935d commit b134fb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maven-code-review/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ runs:
6666
maven-version: 3.8.2
6767

6868
- name: Cache Maven packages
69-
uses: actions/cache@f5ce41475b483ad7581884324a6eca9f48f8dcc7 # v1
69+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
7070
with:
7171
path: ~/.m2
7272
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
7373
restore-keys: ${{ runner.os }}-m2
7474

7575
- name: Cache SonarCloud packages
76-
uses: actions/cache@f5ce41475b483ad7581884324a6eca9f48f8dcc7 # v1
76+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
7777
with:
7878
path: ~/.sonar-project.properties/cache
7979
key: ${{ runner.os }}-sonar-project.properties

0 commit comments

Comments
 (0)