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

roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new bba68a9  Switch to temurin JDK in CI (#24)
bba68a9 is described below

commit bba68a91b1fa2dd92e798e6f84bc4c1b8d22c780
Author: Kaijie Chen <[email protected]>
AuthorDate: Tue Jul 5 16:32:23 2022 +0800

    Switch to temurin JDK in CI (#24)
    
    ### What changes were proposed in this pull request?
    
    Switch to temurin JDK in CI.
    
    ### Why are the changes needed?
    
    From https://github.com/actions/setup-java:
    
    > NOTE: Adopt OpenJDK got moved to Eclipse Temurin and won't be updated 
anymore. It is highly recommended to migrate workflows from adopt to temurin to 
keep receiving software and security updates. See more details in the [Good-bye 
AdoptOpenJDK 
post](https://blog.adoptopenjdk.net/2021/08/goodbye-adoptopenjdk-hello-adoptium/).
    
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    By CI.
---
 .github/workflows/parallel.yml   | 2 +-
 .github/workflows/sequential.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/parallel.yml b/.github/workflows/parallel.yml
index c0a8c4e..c2387f2 100644
--- a/.github/workflows/parallel.yml
+++ b/.github/workflows/parallel.yml
@@ -46,7 +46,7 @@ on:
         required: false
         type: string
       jdk-distro:
-        default: 'adopt'
+        default: 'temurin'
         required: false
         type: string
 
diff --git a/.github/workflows/sequential.yml b/.github/workflows/sequential.yml
index 0bec487..14d6ff1 100644
--- a/.github/workflows/sequential.yml
+++ b/.github/workflows/sequential.yml
@@ -46,7 +46,7 @@ on:
         required: false
         type: string
       jdk-distro:
-        default: 'adopt'
+        default: 'temurin'
         required: false
         type: string
 

Reply via email to