From bba68a91b1fa2dd92e798e6f84bc4c1b8d22c780 Mon Sep 17 00:00:00 2001 From: Kaijie Chen Date: Tue, 5 Jul 2022 16:32:23 +0800 Subject: [PATCH] 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 c0a8c4e721..c2387f2693 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 0bec4876cd..14d6ff1844 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