Skip to content

Commit

Permalink
Downgrade JDK from 22 to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
jisungbin committed Dec 19, 2024
1 parent fa71895 commit dceb568
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup JDK 22
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 22
java-version: 17

- name: Setup Android SDK
uses: android-actions/setup-android@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/document-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup JDK 22
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 22
java-version: 17

- name: Setup Android SDK
uses: android-actions/setup-android@v3
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
jdk = "22"
jdk = "17"

gradle-android = "8.7.3"
gradle-publish-maven = "0.30.0"
Expand Down
2 changes: 1 addition & 1 deletion runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dokka {
basePublicationsDirectory = rootDir.resolve("documentation/site/runtime/api")

dokkaSourceSets.configureEach {
jdkVersion = JavaVersion.VERSION_22.majorVersion.toInt()
jdkVersion = libs.versions.jdk.get().toInt()
}

pluginsConfiguration.html {
Expand Down

0 comments on commit dceb568

Please sign in to comment.