From f3226a1fa7494f2a27f80dc1ac9c4f5a4a6d2544 Mon Sep 17 00:00:00 2001 From: matthew16550 Date: Mon, 30 Aug 2021 15:49:55 +1000 Subject: [PATCH] Change GitHub Workflows to use "temurin" Java. (Docs for https://github.com/actions/setup-java were changed a few days ago to warn that "adopt" Java won't be updated anymore) --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaae4676a..7f48dcf1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: uses: actions/setup-java@v2.1.0 with: java-version: 8 - distribution: 'adopt' + distribution: 'temurin' - name: Cache local Maven repository uses: actions/cache@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2bbb23918..136b56cec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: uses: actions/setup-java@v2.1.0 with: java-version: 8 - distribution: 'adopt' + distribution: 'temurin' # If this run stores a new cache then the next run will not be able to use it because this is a tag checkout :-( # But a cache already created on the default branch (by the CI workflow) will be loaded here.