Skip to content

Commit 91a6717

Browse files
committed
Use JDK 17 for Gradle
The binaries will still be compiled for JDK 8 but the JDK that runs Gradle will be 17.
1 parent 4a9e3e2 commit 91a6717

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
run: |
1919
git config user.name "Zonky Bot"
2020
git config user.email "[email protected]"
21-
- name: Set up JDK 8
21+
- name: Set up JDK 17
2222
uses: actions/setup-java@v5
2323
with:
2424
distribution: 'zulu'
25-
java-version: '8'
25+
java-version: '17'
2626
cache: 'gradle'
2727
- name: Make Gradle wrapper executable
2828
run: chmod +x gradlew

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
java: [8, 11, 17, 21, 25] # LTS and newer versions
9+
java: [17, 21, 25] # LTS and newer versions
1010
steps:
1111
- name: Checkout project
1212
uses: actions/checkout@v5

0 commit comments

Comments
 (0)