From b95a4eedd9e147f28bc16336a8cc1c526042080a Mon Sep 17 00:00:00 2001 From: Ulli Hafner Date: Tue, 26 Oct 2021 14:02:26 +0200 Subject: [PATCH] Switch JDK provider to temurin. AdoptJDK is marked as deprecated and replaced by Eclipse Temurin. --- .github/workflows/autograding.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/coverage.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autograding.yml b/.github/workflows/autograding.yml index 0694fab7f..0cd0c8981 100644 --- a/.github/workflows/autograding.yml +++ b/.github/workflows/autograding.yml @@ -14,7 +14,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v2 with: - distribution: 'adopt' + distribution: 'temurin' java-version: '11' check-latest: true - name: Cache local Maven repository diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 074619bb6..c4c4a3821 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v2 with: - distribution: 'adopt' + distribution: 'temurin' java-version: '11' check-latest: true - name: Cache local Maven repository diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e59960d92..ba8498594 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -17,7 +17,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v2 with: - distribution: 'adopt' + distribution: 'temurin' java-version: '11' check-latest: true - name: Generate coverage with JaCoCo