File tree Expand file tree Collapse file tree 3 files changed +14
-23
lines changed Expand file tree Collapse file tree 3 files changed +14
-23
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,13 @@ jobs:
21
21
- os : macos-latest
22
22
mvn : ./mvnw
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v3
25
25
- name : Set up JDK 1.8
26
- uses : actions/setup-java@v1
26
+ uses : actions/setup-java@v3
27
27
with :
28
- java-version : 1.8
29
- - name : Cache local Maven repository
30
- uses : actions/cache@v2
31
- with :
32
- path : ~/.m2/repository
33
- key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
34
- restore-keys : |
35
- ${{ runner.os }}-maven-
28
+ java-version : 8
29
+ distribution : temurin
30
+ cache : maven
36
31
- name : Build with Maven
37
32
env :
38
33
SONATYPE_USER : ${{ secrets.SONATYPE_USER }}
Original file line number Diff line number Diff line change @@ -18,17 +18,12 @@ jobs:
18
18
- os : macos-latest
19
19
mvn : ./mvnw
20
20
steps :
21
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v3
22
22
- name : Set up JDK 1.8
23
- uses : actions/setup-java@v1
23
+ uses : actions/setup-java@v3
24
24
with :
25
- java-version : 1.8
26
- - name : Cache local Maven repository
27
- uses : actions/cache@v2
28
- with :
29
- path : ~/.m2/repository
30
- key : ${{ runner.os }}-maven-pr-${{ hashFiles('**/pom.xml') }}
31
- restore-keys : |
32
- ${{ runner.os }}-maven-pr-
25
+ java-version : 8
26
+ distribution : temurin
27
+ cache : maven
33
28
- name : Build with Maven
34
29
run : ${{ matrix.mvn }} -B verify -D skipITs
Original file line number Diff line number Diff line change @@ -12,11 +12,12 @@ jobs:
12
12
if : github.repository == 'r2dbc/r2dbc-mssql'
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v3
16
16
- name : Set up JDK 1.8
17
- uses : actions/setup-java@v1
17
+ uses : actions/setup-java@v3
18
18
with :
19
- java-version : 1.8
19
+ java-version : 8
20
+ distribution : temurin
20
21
- name : Initialize Maven Version
21
22
run : ./mvnw -q org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version
22
23
- name : GPG Check
You can’t perform that action at this time.
0 commit comments