From 6f3ad5141d35097af1a8116e608477daa1ab3eb3 Mon Sep 17 00:00:00 2001 From: Markus KARG Date: Sat, 3 Apr 2021 10:48:55 +0200 Subject: [PATCH] Using JDK 16 GA instead of JDK 16 EA Since JDK 16 is generally available it makes no sense to use an early access build anybody. --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index bb2826dd..e804cf58 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - java: [8, 11, 14, 15] + java: [8, 11, 14, 15, 16] fail-fast: false runs-on: ${{ matrix.os }}