Skip to content

Commit

Permalink
Kotless must run on java11
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Promerova committed Jan 10, 2023
1 parent 0093a03 commit ba97250
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Get latest tag
id: latesttag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
- name: Set up JDK 17
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '11'
distribution: 'temurin'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ subprojects {
}
tasks.withType<KotlinJvmCompile> {
kotlinOptions {
jvmTarget = "17"
jvmTarget = "11"
}
}

Expand Down

0 comments on commit ba97250

Please sign in to comment.