-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update java version in publish workflows to 17
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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 |
---|---|---|
|
@@ -16,10 +16,10 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Java JDK 11 | ||
- name: Setup Java JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 11 | ||
java-version: 17 | ||
distribution: adopt | ||
- name: Grant gradlew execution permissions | ||
run: chmod +x gradlew | ||
|
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 |
---|---|---|
|
@@ -21,10 +21,10 @@ jobs: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Java JDK 11 | ||
- name: Setup Java JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 11 | ||
java-version: 17 | ||
distribution: adopt | ||
- name: Grant gradlew execution permissions | ||
run: chmod +x gradlew | ||
|