Skip to content

Commit

Permalink
.github/workflows: Swap from adoptopenjdk to temurin
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ejona86 committed Sep 29, 2021
1 parent 2b4a474 commit 0e85737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e85737

Please sign in to comment.