Skip to content

Commit

Permalink
Using Eclipse temurin
Browse files Browse the repository at this point in the history
as AdoptOpenJDK is getting deprecated.

Eclipse ``temurin`` is a defacto renamed AdoptOpenJDK.

Ref:
* https://blog.adoptopenjdk.net/2021/08/goodbye-adoptopenjdk-hello-adoptium/
* https://github.com/actions/setup-java#supported-distributions
  • Loading branch information
litetex authored Aug 27, 2021
1 parent 0787d62 commit 05f6ea6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions/setup-java@v2
with:
java-version: 8
distribution: "adopt"
distribution: "temurin"

- name: Cache Gradle dependencies
uses: actions/cache@v2
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/setup-java@v2
with:
java-version: 8
distribution: "adopt"
distribution: "temurin"

- name: Cache Gradle dependencies
uses: actions/cache@v2
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
# uses: actions/setup-java@v2
# with:
# java-version: 11 # Sonar requires JDK 11
# distribution: "adopt"
# distribution: "temurin"

# - name: Cache SonarCloud packages
# uses: actions/cache@v2
Expand Down

0 comments on commit 05f6ea6

Please sign in to comment.