You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pd...@apache.org on 2022/03/07 07:01:06 UTC

[zeppelin] branch branch-0.10 updated: [ZEPPELIN-5664] Change from adopt to temurin

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

pdallig pushed a commit to branch branch-0.10
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.10 by this push:
     new b6431e7  [ZEPPELIN-5664] Change from adopt to temurin
b6431e7 is described below

commit b6431e7767bcef39ebfb28422dd53d3248e02acd
Author: Philipp Dallig <ph...@gmail.com>
AuthorDate: Wed Mar 2 18:22:08 2022 +0100

    [ZEPPELIN-5664] Change from adopt to temurin
    
    This PR migrates the JDK from adoptopenjdk to temurin, the successor.
    https://github.com/actions/setup-java#supported-distributions
    
    Refactoring
    
    * https://issues.apache.org/jira/browse/ZEPPELIN-5664
    
    * CI
    
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: Philipp Dallig <ph...@gmail.com>
    
    Closes #4301 from Reamer/update_ci and squashes the following commits:
    
    c8ba59391 [Philipp Dallig] Change adopt to temurin
    
    (cherry picked from commit 914be909605b94b599dc923844b70a16616c6362)
    Signed-off-by: Philipp Dallig <ph...@gmail.com>
---
 .github/workflows/core.yml     | 22 +++++++++++-----------
 .github/workflows/frontend.yml |  6 +++---
 .github/workflows/rat.yml      |  2 +-
 3 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml
index 21a355d..6ca45e7 100644
--- a/.github/workflows/core.yml
+++ b/.github/workflows/core.yml
@@ -41,7 +41,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -84,7 +84,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -121,7 +121,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -166,7 +166,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -204,7 +204,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -249,7 +249,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -291,7 +291,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -336,7 +336,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -381,7 +381,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -425,7 +425,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -465,7 +465,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml
index 5a59dcd..6dbdfe5 100644
--- a/.github/workflows/frontend.yml
+++ b/.github/workflows/frontend.yml
@@ -32,7 +32,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -57,7 +57,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
@@ -84,7 +84,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Cache local Maven repository
         uses: actions/cache@v2
diff --git a/.github/workflows/rat.yml b/.github/workflows/rat.yml
index b32cb59..d6fb859 100644
--- a/.github/workflows/rat.yml
+++ b/.github/workflows/rat.yml
@@ -24,7 +24,7 @@ jobs:
       - name: Set up JDK 8
         uses: actions/setup-java@v2
         with:
-          distribution: 'adopt'
+          distribution: 'temurin'
           java-version: 8
       - name: Check Rat
         run: mvn apache-rat:check -Prat -B