Skip to content

Commit 149def6

Browse files
committed
java ver fix
1 parent 68c2baf commit 149def6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/mvn.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@ jobs:
1616
java: [1.8, 11, 13]
1717
steps:
1818
- uses: actions/checkout@v3
19-
- name: Set up JDK
20-
uses: actions/setup-java@v3
19+
- uses: actions/setup-java@v3
2120
with:
21+
distribution: 'temurin'
2222
java-version: ${{ matrix.java }}
2323
- uses: actions/cache@v3
2424
with:
2525
path: ~/.m2/repository
2626
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
2727
restore-keys: |
2828
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
29-
- name: Build it with Maven
30-
run: mvn -B verify -Pqulice
29+
- run: mvn -B verify -Pqulice

0 commit comments

Comments
 (0)