You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/07/29 12:42:03 UTC

[commons-release-plugin] branch master updated: Update GitHub builds to use Temurin

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new d35dafd  Update GitHub builds to use Temurin
d35dafd is described below

commit d35dafd211e29818233607ca24dac27d926400f8
Author: Gary Gregory <gg...@rocketsoftware.com>
AuthorDate: Fri Jul 29 08:41:59 2022 -0400

    Update GitHub builds to use Temurin
---
 .github/workflows/coverage.yml | 2 +-
 .github/workflows/maven.yml    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index ba77a97..e9c398f 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -39,7 +39,7 @@ jobs:
     - name: Set up JDK ${{ matrix.java }}
       uses: actions/setup-java@v3
       with:
-        distribution: adopt
+        distribution: 'temurin'
         java-version: ${{ matrix.java }}
     - name: Build with Maven
       run: mvn -V test jacoco:report --file pom.xml --no-transfer-progress
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index d9e89a6..dcfcbd1 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -41,7 +41,7 @@ jobs:
     - name: Set up JDK ${{ matrix.java }}
       uses: actions/setup-java@v3
       with:
-        distribution: adopt
+        distribution: 'temurin'
         java-version: ${{ matrix.java }}
     - name: Build with Maven
       run: mvn -V -Ddoclint=all --file pom.xml --no-transfer-progress