Skip to content

Commit 3349a57

Browse files
committed
Adjust GHA configuration
1 parent 461375c commit 3349a57

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/maven.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [ubuntu-latest,windows-latest, macOS-latest]
28-
java: [8, 11, 16, 17-ea]
28+
java: [8, 11, 17]
2929
jdk: [temurin]
3030
fail-fast: false
3131

@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/checkout@v3
3737

3838
- name: Set up cache for ~./m2/repository
39-
uses: actions/cache@v3.0.2
39+
uses: actions/cache@v3
4040
with:
4141
path: ~/.m2/repository
4242
key: maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
@@ -45,10 +45,10 @@ jobs:
4545
maven-${{ matrix.os }}-
4646
4747
- name: Set up JDK
48-
uses: actions/setup-java@v3.2.0
48+
uses: actions/setup-java@v3
4949
with:
5050
java-version: ${{ matrix.java }}
5151
distribution: ${{ matrix.jdk }}
5252

5353
- name: Build with Maven
54-
run: mvn install javadoc:javadoc -e -B -V -Pno-tests-if-not-on-osx
54+
run: mvn install javadoc:javadoc -e -B -V

0 commit comments

Comments
 (0)