Skip to content

Commit d43fec3

Browse files
committed
Update JDK version in build and publish workflows to 17
1 parent 94b686f commit d43fec3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
steps:
1414
- name: Git checkout
1515
uses: actions/checkout@v4
16-
- name: Set up JDK 11
16+
- name: Set up JDK 17
1717
uses: actions/setup-java@v4
1818
with:
1919
cache: gradle
2020
distribution: microsoft
21-
java-version: 11
21+
java-version: 17
2222
- name: Build with Gradle
2323
run: ./gradlew build --scan

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
steps:
2424
- name: Git checkout
2525
uses: actions/checkout@v4
26-
- name: Set up JDK 11
26+
- name: Set up JDK 17
2727
uses: actions/setup-java@v4
2828
with:
2929
cache: gradle
3030
distribution: microsoft
31-
java-version: 11
31+
java-version: 17
3232
- name: Create gradle.properties
3333
run: echo -e "gradle.publish.key=$GRADLE_PUBLISH_KEY\ngradle.publish.secret=$GRADLE_PUBLISH_SECRET" > gradle.properties
3434
- name: Build with Gradle

0 commit comments

Comments
 (0)