From 9c60f4b86244b139f6f9fb7d31e830f97eca6cd0 Mon Sep 17 00:00:00 2001 From: Carl Dea Date: Fri, 10 Sep 2021 11:59:12 -0400 Subject: [PATCH 1/3] Using TCK Tested JDK builds of OpenJDK The AdoptOpenJDK has been discontinued since July 2021. When using Zulu you get all the latest updated (TCK Tested) builds for all versions of OpenJDK. Also added fixed (major) version releases for LTS JDKs. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6d9106596..883d4150b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - java: [ 8, 11, 16 ] + java: [ 8, 8.0.192, 11, 11.0.3, 16 ] exclude: - os: windows-latest java: 11 @@ -55,7 +55,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-java@v2 with: - distribution: 'adopt' + distribution: 'zulu' java-version: ${{ matrix.java }} java-package: jdk cache: 'maven' @@ -123,4 +123,4 @@ jobs: run: | echo "Architecture: `uname -a`" mvn --version - cd /work && mvn test \ No newline at end of file + cd /work && mvn test From 794d40fe7ddd326eb40ccc3eedf41f4b3f075915 Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Sat, 11 Sep 2021 11:17:40 -0700 Subject: [PATCH 2/3] Update .github/workflows/test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 883d4150b..d303330ed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - java: [ 8, 8.0.192, 11, 11.0.3, 16 ] + java: [ 8, 11, 16 ] exclude: - os: windows-latest java: 11 From 4812ebbbde18e5779697b854be8f4db0c072c366 Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Sat, 11 Sep 2021 11:17:49 -0700 Subject: [PATCH 3/3] Update .github/workflows/test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d303330ed..5a39e7175 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-java@v2 with: - distribution: 'zulu' + distribution: 'temurin' java-version: ${{ matrix.java }} java-package: jdk cache: 'maven'