Skip to content

Commit 066c26e

Browse files
committed
Use JDK v17 in CI scripts.
JDK/JRE 17 is a requirement for Spring Boot 3 to which we should migrate in the future.
1 parent 424d359 commit 066c26e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/generate-jooq.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v3
1616

17-
- name: Set up JDK 11
18-
uses: actions/setup-java@v2
17+
- name: Set up JDK 17
18+
uses: actions/setup-java@v3
1919
with:
20-
java-version: "11"
20+
java-version: "17"
2121
java-package: jdk
2222
architecture: x64
2323
distribution: temurin

.github/workflows/java-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- name: Start databases (blocking until up)
1818
run: ./development.sh start:devdeps
1919

20-
- name: Set up JDK 11
21-
uses: actions/setup-java@v2
20+
- name: Set up JDK 17
21+
uses: actions/setup-java@v3
2222
with:
23-
java-version: "11"
23+
java-version: "17"
2424
java-package: jdk
2525
architecture: x64
2626
distribution: temurin

0 commit comments

Comments
 (0)