Skip to content

Commit

Permalink
Use oracle-actions/setup-java for cross-version workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
scordio committed Jun 14, 2022
1 parent 16114e9 commit a566f73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cross-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [18, 19-ea]
java: [18, 19, 20]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
uses: oracle-actions/setup-java@v1
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
# cache: 'maven'
website: jdk.java.net
release: ${{ matrix.java }}
version: latest
- name: Test
run: ./mvnw -V --no-transfer-progress -e verify javadoc:javadoc

0 comments on commit a566f73

Please sign in to comment.