We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0597ac3 commit bdc4951Copy full SHA for bdc4951
1 file changed
.github/workflows/maven.yml
@@ -14,15 +14,15 @@ jobs:
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
17
- java: [ '8', '11', '17' ] # LTS versions
+ java: [ '8', '11', '17-ea' ] # LTS versions
18
19
steps:
20
- uses: actions/checkout@v2
21
- name: Set up JDK ${{ matrix.java }}
22
uses: actions/setup-java@v2
23
with:
24
java-version: ${{ matrix.java }}
25
- distribution: 'adopt'
+ distribution: 'temurin'
26
- name: Build with Maven
27
run: mvn -B package --file pom.xml
28
- name: Extract Maven project version
0 commit comments