File tree 2 files changed +11
-4
lines changed 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -26,18 +26,25 @@ jobs:
26
26
strategy :
27
27
matrix :
28
28
os : [ubuntu-latest, macOS-latest, windows-latest]
29
- java : [17, 21]
29
+ java : [17, 21, 22 ]
30
30
distribution : ['zulu']
31
31
fail-fast : false
32
32
max-parallel : 5
33
33
name : Test JDK ${{ matrix.java }}, ${{ matrix.os }}
34
34
35
35
steps :
36
36
- uses : actions/checkout@v4
37
- - name : Set up JDK
37
+ - name : Set JDK from jdk.java.net
38
+ uses : oracle-actions/setup-java@v1
39
+ with :
40
+ website : jdk.java.net
41
+ release : ${{ matrix.java }}
42
+ if : ${{ matrix.java != '17' }}
43
+ - name : Set up older JDK
38
44
uses : actions/setup-java@v3
39
45
with :
40
46
java-version : ${{ matrix.java }}
41
47
distribution : ${{ matrix.distribution }}
48
+ if : ${{ matrix.java == '17' }}
42
49
- name : Test with Maven
43
50
run : ./mvnw test -B -D"license.skip=true"
Original file line number Diff line number Diff line change 119
119
<!-- Reproducible Builds -->
120
120
<project .build.outputTimestamp>1684514485</project .build.outputTimestamp>
121
121
122
- <!-- TODO: Remove this after mybatis-parent 38 -->
123
- <jacoco .plugin>0.8.9 </jacoco .plugin>
122
+ <!-- TODO: Remove this after mybatis-parent 40 -->
123
+ <jacoco .plugin>0.8.11 </jacoco .plugin>
124
124
125
125
<!-- Set byte buddy to experimental -->
126
126
<net .bytebuddy.experimental>true</net .bytebuddy.experimental>
You can’t perform that action at this time.
0 commit comments