Run actions with JDK 17, test with 17 instead of 16

This commit is contained in:
Jason Penilla 2021-09-26 19:56:12 -07:00 committed by Jason
parent 898ce5651c
commit c9725ed763
2 changed files with 3 additions and 3 deletions

View file

@ -24,8 +24,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 16
distribution: 'temurin'
java-version: 17
- name: Build
run: ./gradlew build
- name: Determine Status

View file

@ -13,7 +13,7 @@ indra {
javaVersions {
minimumToolchain(16)
target(8)
testWith(8, 11, 16)
testWith(8, 11, 17)
}
checkstyle("9.0")