From a37876174aa7be90524f33dd2c37253da27880ef Mon Sep 17 00:00:00 2001 From: Gavin Schneider Date: Tue, 21 Sep 2021 11:52:20 -0500 Subject: [PATCH] Add JDK 17 test target Update setup-java action to v2 and add JDK 17 target to test the latest LTS release. --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 129b5e4..1aa8c9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,14 @@ jobs: strategy: fail-fast: false matrix: - java: [ 8, 11 ] + java: [ 8, 11, 17 ] steps: - uses: actions/checkout@v2 - name: Setup java - uses: actions/setup-java@v1 + uses: actions/setup-java@v2 with: + distribution: zulu java-version: ${{ matrix.java }} - name: Cache Maven packages uses: actions/cache@v2