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 @@ -26,14 +26,14 @@ jobs:
26
26
strategy :
27
27
matrix :
28
28
os : [ubuntu-latest, macOS-latest, windows-latest]
29
- java : [17, 20, 21-ea ]
29
+ java : [17, 21 ]
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
- - uses : actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
36
+ - uses : actions/checkout@v4
37
37
- name : Set up JDK
38
38
uses : actions/setup-java@v3
39
39
with :
Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ jobs:
25
25
if : github.repository_owner == 'mybatis'
26
26
runs-on : ubuntu-latest
27
27
steps :
28
- - uses : actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
28
+ - uses : actions/checkout@v4
29
29
- name : Set up JDK
30
30
uses : actions/setup-java@v3
31
31
with :
32
- java-version : 17
32
+ java-version : 21
33
33
distribution : zulu
34
34
- name : Report Coverage to Coveralls for Pull Requests
35
35
if : github.event_name == 'pull_request'
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ jobs:
26
26
if : github.repository_owner == 'mybatis'
27
27
runs-on : ubuntu-latest
28
28
steps :
29
- - uses : actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
29
+ - uses : actions/checkout@v4
30
30
with :
31
31
# Disabling shallow clone is recommended for improving relevancy of reporting
32
32
fetch-depth : 0
33
33
- name : Set up JDK
34
34
uses : actions/setup-java@v3
35
35
with :
36
- java-version : 17
36
+ java-version : 21
37
37
distribution : zulu
38
38
- name : Analyze with SonarCloud
39
39
run : ./mvnw verify jacoco:report sonar:sonar -B -Dsonar.projectKey=mybatis_spring -Dsonar.organization=mybatis -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN -Dlicense.skip=true
Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ jobs:
26
26
if : github.repository_owner == 'mybatis' && ! contains(toJSON(github.event.head_commit.message), '[maven-release-plugin]')
27
27
runs-on : ubuntu-latest
28
28
steps :
29
- - uses : actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
29
+ - uses : actions/checkout@v4
30
30
- name : Set up JDK
31
31
uses : actions/setup-java@v3
32
32
with :
33
- java-version : 17
33
+ java-version : 21
34
34
distribution : zulu
35
35
- name : Deploy to Sonatype
36
36
run : ./mvnw deploy -DskipTests -B --settings ./.mvn/settings.xml -Dlicense.skip=true
You can’t perform that action at this time.
0 commit comments