-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Eclipse Temurin, not AdoptOpenJDK in action (#209)
The 'adopt' distribution has moved to Eclipse Temurin. It won't be updated at the AdoptOpenJDK location. See jenkinsci/jenkins#6406 https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#adopt https://github.com/actions/setup-java#usage
- Loading branch information
1 parent
55e122f
commit c87dfef
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
distribution: 'adopt' | ||
distribution: 'temurin' | ||
java-version: '8' | ||
- name: Build | ||
run: mvn -Dmaven.test.skip=true -Dspotbugs.skip=true --batch-mode --show-version clean install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
distribution: 'adopt' | ||
distribution: 'temurin' | ||
java-version: '8' | ||
- name: Build | ||
run: mvn -Pjacoco clean verify --batch-mode --show-version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
- name: Set up JDK 8 | ||
uses: actions/[email protected] | ||
with: | ||
distribution: 'adopt' | ||
distribution: 'temurin' | ||
java-version: 8 | ||
- name: Release | ||
uses: jenkins-infra/[email protected] | ||
|