Skip to content

Commit bdc4951

Browse files
committed
Fix GitHub Actions
1 parent 0597ac3 commit bdc4951

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
java: [ '8', '11', '17' ] # LTS versions
17+
java: [ '8', '11', '17-ea' ] # LTS versions
1818

1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Set up JDK ${{ matrix.java }}
2222
uses: actions/setup-java@v2
2323
with:
2424
java-version: ${{ matrix.java }}
25-
distribution: 'adopt'
25+
distribution: 'temurin'
2626
- name: Build with Maven
2727
run: mvn -B package --file pom.xml
2828
- name: Extract Maven project version

0 commit comments

Comments
 (0)