Skip to content

Commit

Permalink
Update workflow to JDK17
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed Dec 31, 2021
1 parent 30220fe commit a07c58e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 16 ]
java: [ 11, 17 ]
name: Java ${{ matrix.java }}
steps:
- name: Check out code
uses: actions/checkout@master
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: temurin
- run: ./mvnw -B verify

0 comments on commit a07c58e

Please sign in to comment.