From 99c9ba2854da0134f4ebcb61dab3e2f7112a05d7 Mon Sep 17 00:00:00 2001 From: Carl Dea Date: Mon, 27 Sep 2021 14:36:33 -0400 Subject: [PATCH] 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 included archived major fixed versions. --- .github/workflows/deploy-snapshot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-snapshot.yml b/.github/workflows/deploy-snapshot.yml index 7e5cc72..2c31b23 100644 --- a/.github/workflows/deploy-snapshot.yml +++ b/.github/workflows/deploy-snapshot.yml @@ -16,7 +16,7 @@ jobs: uses: actions/setup-java@v2 with: java-version: '8' - distribution: 'adopt' + distribution: 'zulu' - name: Cache m2 package uses: actions/cache@v2 with: @@ -36,7 +36,7 @@ jobs: uses: actions/setup-java@v2 with: java-version: '8' - distribution: 'adopt' + distribution: 'zulu' server-id: ossrh server-username: MAVEN_USERNAME server-password: MAVEN_PASSWORD -- GitLab