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 - name: Set up JDK
uses: actions/setup-java@v2 uses: actions/setup-java@v2
with: with:
distribution: 'adopt' distribution: 'temurin'
java-version: 16 java-version: 17
- name: Build - name: Build
run: ./gradlew build run: ./gradlew build
- name: Determine Status - name: Determine Status

View file

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