Skip to content

Commit

Permalink
fix(build): enforce java 11 for buildSrc
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed Mar 7, 2023
1 parent eaf8b00 commit dc94bc8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
jobs:
test-jvm:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ repositories {
gradlePluginPortal()
}

kotlin {
jvmToolchain(11)
}

dependencies {
implementation(libs.kotlin.bom)
implementation(libs.kotlin.gradlePlugin)
Expand Down

0 comments on commit dc94bc8

Please sign in to comment.