File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ jobs:
24
24
uses : actions/checkout@v4
25
25
26
26
- name : Cache Docker Register
27
- uses : actions/cache@v3
27
+ uses : actions/cache@v4
28
28
with :
29
29
path : /tmp/.buildx-cache
30
30
key : ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
31
31
- name : Cache Maven packages
32
- uses : actions/cache@v3
32
+ uses : actions/cache@v4
33
33
with :
34
34
path : ~/.m2
35
35
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ jobs:
27
27
28
28
- name : Cache Docker Register
29
29
if : ${{ steps.release.outputs.release_created }}
30
- uses : actions/cache@v3
30
+ uses : actions/cache@v4
31
31
with :
32
32
path : /tmp/.buildx-cache
33
33
key : ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
34
34
- name : Cache Maven packages
35
35
if : ${{ steps.release.outputs.release_created }}
36
- uses : actions/cache@v3
36
+ uses : actions/cache@v4
37
37
with :
38
38
path : ~/.m2
39
39
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -54,13 +54,13 @@ jobs:
54
54
git checkout ${{ github.event.workflow_run.head_branch }}
55
55
git clean -ffdx && git reset --hard HEAD
56
56
- name : Cache SonarCloud packages
57
- uses : actions/cache@v3
57
+ uses : actions/cache@v4
58
58
with :
59
59
path : ~/.sonar/cache
60
60
key : ${{ runner.os }}-sonar
61
61
restore-keys : ${{ runner.os }}-sonar
62
62
- name : Cache Maven packages
63
- uses : actions/cache@v3
63
+ uses : actions/cache@v4
64
64
with :
65
65
path : ~/.m2
66
66
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
31
31
fetch-depth : 0
32
32
33
33
- name : Cache SonarCloud packages
34
- uses : actions/cache@v3
34
+ uses : actions/cache@v4
35
35
with :
36
36
path : ~/.sonar/cache
37
37
key : ${{ runner.os }}-sonar
38
38
restore-keys : ${{ runner.os }}-sonar
39
39
- name : Cache Maven packages
40
- uses : actions/cache@v3
40
+ uses : actions/cache@v4
41
41
with :
42
42
path : ~/.m2
43
43
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
You can’t perform that action at this time.
0 commit comments