Skip to content

Commit

Permalink
Update plugin to jdk 17 (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
huehnerlady authored Sep 4, 2023
1 parent 0e20f41 commit f9a679a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 8
distribution: 'corretto'
java-version: 17
cache: 'gradle'
- name: clean build
run: ./gradlew clean build --no-daemon --info --stacktrace
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 8
java-version: 17
distribution: 'corretto'
- name: Set artifact version
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
cache: 'gradle'
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val javaVersion = JavaVersion.VERSION_1_8
val javaVersion = JavaVersion.VERSION_17

plugins {
alias(libs.plugins.kotlinJvm)
Expand Down

0 comments on commit f9a679a

Please sign in to comment.