Skip to content

Commit

Permalink
Use Eclipse Temurin, not AdoptOpenJDK in action (#209)
Browse files Browse the repository at this point in the history
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
MarkEWaite authored Mar 28, 2022
1 parent 55e122f commit c87dfef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Archive_Plugin_Artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit c87dfef

Please sign in to comment.