From 7f95acc8910ebf6a185fdded05954af645129bb1 Mon Sep 17 00:00:00 2001 From: Artur Ciocanu Date: Wed, 21 Aug 2024 10:33:08 +0300 Subject: [PATCH] Use Eclipse Temurin as OpenJDK distribution Signed-off-by: Artur Ciocanu --- .github/workflows/build.yml | 4 ++-- .github/workflows/validate.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a72c23ff2..ac3d084ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: - name: Set up OpenJDK ${{ env.JDK_VER }} uses: actions/setup-java@v4 with: - distribution: 'adopt' + distribution: 'temurin' java-version: ${{ env.JDK_VER }} - name: Set up Dapr CLI run: wget -q ${{ env.DAPR_INSTALL_URL }} -O - | /bin/bash -s ${{ env.DAPR_CLI_VER }} @@ -158,7 +158,7 @@ jobs: - name: Set up OpenJDK ${{ env.JDK_VER }} uses: actions/setup-java@v4 with: - distribution: 'adopt' + distribution: 'temurin' java-version: ${{ env.JDK_VER }} - name: Get pom parent version run: | diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index ffe5a7168..ef6bc85b0 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -47,7 +47,7 @@ jobs: - name: Set up OpenJDK ${{ env.JDK_VER }} uses: actions/setup-java@v4 with: - distribution: 'adopt' + distribution: 'temurin' java-version: ${{ env.JDK_VER }} - name: Set up Dapr CLI run: wget -q ${{ env.DAPR_INSTALL_URL }} -O - | /bin/bash -s ${{ env.DAPR_CLI_VER }}