From 1950ec692a978b59800ca437b80bd0f1ed42298f Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Wed, 13 Mar 2024 16:07:03 +0800 Subject: [PATCH] [KYUUBI #6180] Kyuubi Spark nightly testing should use JDK 17 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :mag: Description ## Issue References ๐Ÿ”— This pull request fixes [Kyuubi Spark Nightly test]( https://github.com/apache/kyuubi/actions/runs/8259256940/job/22592865897) because Spark 4.0 drops the support of Java 8/11 and Scala 2.12 ## Describe Your Solution ๐Ÿ”ง Switch to Java 17 and Scala 2.13 ## Types of changes :bookmark: - [x] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan ๐Ÿงช Monitor CI --- # Checklist ๐Ÿ“ - [x] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6180 from pan3793/spark-nightly. Closes #6180 781d3aeda [Cheng Pan] Kyuubi Spark nightly testing should use JDK 17 Authored-by: Cheng Pan Signed-off-by: Cheng Pan --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 728c3ad5c08..17164a4fdfe 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -40,7 +40,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: temurin - java-version: 8 + java-version: 17 cache: 'maven' check-latest: false - name: Setup Maven