Skip to content

Commit

Permalink
build: bump jvm from 11 to 17
Browse files Browse the repository at this point in the history
BREAKING CHANGE: May break projects if they use older java versions
  • Loading branch information
nickmcdowall committed Nov 18, 2023
1 parent 8e9fa8f commit c933c7d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
build:
uses: lsd-consulting/shared-workflows/.github/workflows/build.yml@main
with:
java-version: '11'
java-version: '17'
codecov: true
release:
needs: build
uses: lsd-consulting/shared-workflows/.github/workflows/release.yml@main
with:
java-version: '11'
java-version: '17'
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
build:
uses: lsd-consulting/shared-workflows/.github/workflows/build.yml@main
with:
java-version: '11'
java-version: '17'
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {
}

kotlin {
jvmToolchain(11)
jvmToolchain(17)
}

dependencies {
Expand All @@ -29,7 +29,7 @@ dependencies {

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'com.approvaltests:approvaltests:22.2.1'
testImplementation 'org.mockito:mockito-all:1.10.19'
testImplementation 'org.mockito:mockito-core:5.4.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.1'
}

Expand Down

0 comments on commit c933c7d

Please sign in to comment.