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 @@ -42,20 +42,20 @@ jobs:
42
42
steps :
43
43
44
44
- name : Checkout Code
45
- uses : actions/checkout@v3
45
+ uses : actions/checkout@v4
46
46
with :
47
47
# Disabling shallow clone for improving relevancy of SonarQube reporting
48
48
fetch-depth : 0
49
49
50
50
- name : Set up JDK 17
51
- uses : actions/setup-java@v3
51
+ uses : actions/setup-java@v4
52
52
with :
53
53
java-version : ' 17'
54
54
distribution : ' temurin'
55
55
cache : ' maven'
56
56
57
57
- name : Cache local Maven repository
58
- uses : actions/cache@v3
58
+ uses : actions/cache@v4
59
59
with :
60
60
path : ~/.m2/repository
61
61
key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
64
64
65
65
# Cache Sonar packages which as used to run analysis and collect metrics
66
66
- name : Cache SonarCloud packages
67
- uses : actions/cache@v3
67
+ uses : actions/cache@v4
68
68
with :
69
69
path : ~/.sonar/cache
70
70
key : ${{ runner.os }}-sonar
Original file line number Diff line number Diff line change @@ -42,19 +42,19 @@ jobs:
42
42
steps :
43
43
44
44
- name : Checkout Code
45
- uses : actions/checkout@v3
45
+ uses : actions/checkout@v4
46
46
with :
47
47
ref : ${{ github.event.pull_request.head.sha }}
48
48
49
49
- name : Set up JDK 17
50
- uses : actions/setup-java@v3
50
+ uses : actions/setup-java@v4
51
51
with :
52
52
java-version : ' 17'
53
53
distribution : ' temurin'
54
54
cache : ' maven'
55
55
56
56
- name : Cache local Maven repository
57
- uses : actions/cache@v3
57
+ uses : actions/cache@v4
58
58
with :
59
59
path : ~/.m2/repository
60
60
key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
63
63
64
64
# Cache Sonar packages which as used to run analysis and collect metrics
65
65
- name : Cache SonarCloud packages
66
- uses : actions/cache@v3
66
+ uses : actions/cache@v4
67
67
with :
68
68
path : ~/.sonar/cache
69
69
key : ${{ runner.os }}-sonar
You can’t perform that action at this time.
0 commit comments