This is an automated email from the ASF dual-hosted git repository. pdallig pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 914be90 [ZEPPELIN-5664] Change from adopt to temurin 914be90 is described below commit 914be909605b94b599dc923844b70a16616c6362 Author: Philipp Dallig <philipp.dal...@gmail.com> AuthorDate: Wed Mar 2 18:22:08 2022 +0100 [ZEPPELIN-5664] Change from adopt to temurin ### What is this PR for? This PR migrates the JDK from adoptopenjdk to temurin, the successor. https://github.com/actions/setup-java#supported-distributions ### What type of PR is it? Refactoring ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-5664 ### How should this be tested? * CI ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Philipp Dallig <philipp.dal...@gmail.com> Closes #4301 from Reamer/update_ci and squashes the following commits: c8ba59391 [Philipp Dallig] Change adopt to temurin --- .github/workflows/core.yml | 16 ++++++++-------- .github/workflows/frontend.yml | 8 ++++---- .github/workflows/quick.yml | 4 ++-- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 808356d..e765a54 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -42,7 +42,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 @@ -89,7 +89,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 @@ -131,7 +131,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 @@ -177,7 +177,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 @@ -223,7 +223,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 @@ -262,7 +262,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 @@ -313,7 +313,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 @@ -371,7 +371,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 20f4aff..9f84e58 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 @@ -61,7 +61,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 @@ -88,7 +88,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 @@ -118,4 +118,4 @@ jobs: run: xvfb-run --auto-servernum --server-args="-screen 0 1600x1024x16" ./mvnw verify -DskipRat -Pspark-2.4 -Phadoop2 -Phelium-dev -Pexamples -Pintegration -Pspark-scala-2.11 -B -pl zeppelin-integration -DfailIfNoTests=false - name: Print zeppelin logs if: always() - run: if [ -d "logs" ]; then cat logs/*; fi \ No newline at end of file + run: if [ -d "logs" ]; then cat logs/*; fi diff --git a/.github/workflows/quick.yml b/.github/workflows/quick.yml index bdbf5fc..4783d9c 100644 --- a/.github/workflows/quick.yml +++ b/.github/workflows/quick.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: ./mvnw apache-rat:check -Prat -B @@ -48,7 +48,7 @@ jobs: - name: Set up JDK 8 uses: actions/setup-java@v2 with: - distribution: 'adopt' + distribution: 'temurin' java-version: 8 - name: Run Maven Validate run: ./mvnw validate -DskipRat -P${{ matrix.hadoop }} -Pinclude-hadoop -B