Commit b1f3940 1 parent 9998866 commit b1f3940 Copy full SHA for b1f3940
File tree 4 files changed +14
-11
lines changed
4 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -29,12 +29,15 @@ jobs:
29
29
build-and-test :
30
30
runs-on : ubuntu-latest
31
31
steps :
32
- - uses : actions/checkout@v3
33
- - name : Set up JDK 17
32
+ - name : Checkout code
33
+ uses : actions/checkout@v3
34
+
35
+ - name : Set up JDK 21
34
36
uses : actions/setup-java@v3
35
37
with :
36
- java-version : ' 17'
37
- distribution : ' zulu'
38
+ java-version : ' 21'
39
+ distribution : ' temurin'
40
+
38
41
- name : Build + unit tests
39
42
run : ./gradlew --no-daemon :sd-app:build
40
43
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ jobs:
20
20
- uses : actions/checkout@v2
21
21
with :
22
22
fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
23
- - name : Set up JDK 17
23
+ - name : Set up JDK 21
24
24
uses : actions/setup-java@v3
25
25
with :
26
- java-version : ' 17 '
27
- distribution : ' zulu '
26
+ java-version : ' 21 '
27
+ distribution : ' temurin '
28
28
- name : Cache SonarCloud packages
29
29
uses : actions/cache@v1
30
30
with :
Original file line number Diff line number Diff line change 1
- FROM amazoncorretto:17 -alpine
1
+ FROM eclipse-temurin:21-jre -alpine
2
2
3
3
LABEL MAINTAINER="Mauricio Generoso"
4
4
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ plugins {
12
12
}
13
13
14
14
jacoco {
15
- toolVersion = " 0.8.8 "
15
+ toolVersion = " 0.8.12 "
16
16
}
17
17
18
18
java {
19
- sourceCompatibility = JavaVersion . VERSION_17
20
- targetCompatibility = JavaVersion . VERSION_17
19
+ sourceCompatibility = JavaVersion . VERSION_21
20
+ targetCompatibility = JavaVersion . VERSION_21
21
21
}
22
22
23
23
scmVersion {
You can’t perform that action at this time.
0 commit comments