From f0d93851202fdad523dfdf3fcf8d4e2fba86a0fb Mon Sep 17 00:00:00 2001 From: Alex Osborne Date: Sun, 25 Jul 2021 11:22:09 +0900 Subject: [PATCH] GitHub actions: run test suite on JDK 16 too --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index a0a0669e..09acacbd 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -10,7 +10,7 @@ jobs: build: strategy: matrix: - jdk: [8, 11] + jdk: [8, 11, 16] runs-on: ubuntu-latest timeout-minutes: 30 @@ -34,4 +34,4 @@ jobs: # Apparently Azure kills idle http connections after 4 minutes which can cause the build to fail # with a timeout error. Limit the connection ttl to 2 minutes to workaround this as per # https://github.com/actions/virtual-environments/issues/1499 - MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 \ No newline at end of file + MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3