Skip to content

Commit f702a6a

Browse files
committed
use JDK17 because Gradle 9.x requires it
1 parent 098ad97 commit f702a6a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
distribution: 'temurin'
1818
cache: 'gradle'
19-
java-version: '11'
19+
java-version: '17'
2020
- name: Run tests in Gradle
2121
run: ./gradlew clean test --info --rerun-tasks
2222
- uses: actions/upload-artifact@v6
@@ -35,7 +35,7 @@ jobs:
3535
contents: write
3636
steps:
3737
- name: 🤖 Merge PR from dependabot
38-
uses: fastify/github-action-merge-dependabot@v3.11.2
38+
uses: fastify/github-action-merge-dependabot@v3
3939
with:
4040
github-token: ${{secrets.GITHUB_TOKEN}}
4141
target: minor

gradle/compilation.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ java {
66
sourceCompatibility = 1.8
77
targetCompatibility = 1.8
88
toolchain {
9-
languageVersion = JavaLanguageVersion.of(11)
9+
languageVersion = JavaLanguageVersion.of(17)
1010
}
1111
}

0 commit comments

Comments
 (0)