From 0e857376365d2080348f368bc8daac035f0a9035 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Wed, 29 Sep 2021 13:04:47 -0700 Subject: [PATCH] .github/workflows: Swap from adoptopenjdk to temurin Adopt OpenJDK is longer seeing new releases, and instead has moved under the Eclipse umbrella with Temurin releases. https://blog.adoptopenjdk.net/2021/08/goodbye-adoptopenjdk-hello-adoptium/ https://github.com/actions/setup-java#supported-distributions The adopt binaries still work, but won't see new versions. --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 0bcced9889..99177462ef 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/setup-java@v2 with: java-version: ${{ matrix.jre }} - distribution: 'adopt' + distribution: 'temurin' - name: Gradle cache uses: actions/cache@v2