You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2022/05/03 17:39:49 UTC

[jena] branch main updated: setup-java -- set distribution "temurin"

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

andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git


The following commit(s) were added to refs/heads/main by this push:
     new 3720d2263f setup-java -- set distribution "temurin"
3720d2263f is described below

commit 3720d2263f5e2baed19d04e35fb5223a15c21071
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Tue May 3 18:39:43 2022 +0100

    setup-java -- set distribution "temurin"
---
 .github/workflows/maven.yml         | 1 +
 .github/workflows/maven_macos.yml   | 1 +
 .github/workflows/maven_windows.yml | 1 +
 3 files changed, 3 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index d13755a4e0..91b259a9f2 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -28,5 +28,6 @@ jobs:
       uses: actions/setup-java@v3
       with:
         java-version: '11'
+	distribution: 'temurin'
     - name: Build with Maven
       run: mvn -B verify -Pdev --file pom.xml
diff --git a/.github/workflows/maven_macos.yml b/.github/workflows/maven_macos.yml
index f70a7a2b6f..593476cc7e 100644
--- a/.github/workflows/maven_macos.yml
+++ b/.github/workflows/maven_macos.yml
@@ -23,6 +23,7 @@ jobs:
       uses: actions/setup-java@v3
       with:
         java-version: '11'
+	distribution: 'temurin'
 
     - name: Build with Maven
       run: mvn -B verify -Pdev --file pom.xml
diff --git a/.github/workflows/maven_windows.yml b/.github/workflows/maven_windows.yml
index 1ba1c1b29f..2465d24a97 100644
--- a/.github/workflows/maven_windows.yml
+++ b/.github/workflows/maven_windows.yml
@@ -25,6 +25,7 @@ jobs:
       uses: actions/setup-java@v3
       with:
         java-version: '11'
+	distribution: 'temurin'
 
     - name: copy checked out dir to /c/jena for windows-latest
       run: bash -c "cp -r /d/a/jena/jena /c/jena"