File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,21 @@ jobs:
10
10
name : Maven clean package
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
14
with :
15
15
fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
16
16
- name : Set up JDK 11
17
- uses : actions/setup-java@v1
17
+ uses : actions/setup-java@v4
18
18
with :
19
19
java-version : 11
20
20
- name : Cache SonarCloud packages
21
- uses : actions/cache@v1
21
+ uses : actions/cache@v4
22
22
with :
23
23
path : ~/.sonar/cache
24
24
key : ${{ runner.os }}-sonar
25
25
restore-keys : ${{ runner.os }}-sonar
26
26
- name : Cache Maven packages
27
- uses : actions/cache@v1
27
+ uses : actions/cache@v4
28
28
with :
29
29
path : ~/.m2
30
30
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -17,21 +17,21 @@ jobs:
17
17
if : contains(github.event.pull_request.labels.*.name, 'safe to run with secrets')
18
18
19
19
steps :
20
- - uses : actions/checkout@v2
20
+ - uses : actions/checkout@v4
21
21
with :
22
22
fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
23
23
- name : Set up JDK 11
24
- uses : actions/setup-java@v1
24
+ uses : actions/setup-java@v4
25
25
with :
26
26
java-version : 11
27
27
- name : Cache Maven packages
28
- uses : actions/cache@v1
28
+ uses : actions/cache@v4
29
29
with :
30
30
path : ~/.m2
31
31
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
32
32
restore-keys : ${{ runner.os }}-m2
33
33
- name : Cache SonarCloud packages
34
- uses : actions/cache@v1
34
+ uses : actions/cache@v4
35
35
with :
36
36
path : ~/.sonar/cache
37
37
key : ${{ runner.os }}-sonar
You can’t perform that action at this time.
0 commit comments