Skip to content

Commit c1d5726

Browse files
committed
Update Java verstion to 17 since Spring Boot 3 only supports Java 17
1 parent 00cd7e5 commit c1d5726

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
java_version: [8]
19+
java_version: [17]
2020
os: [windows-latest]
2121

2222
steps:
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ${{ matrix.os }}
3737
strategy:
3838
matrix:
39-
java_version: [8, 11, 17]
39+
java_version: [17]
4040
os: [windows-latest] # , macOS-latest (remove macOS as it is not stable for now) , ubuntu-latest (remove Ubuntu as Chrome 77 doesn't work
4141

4242
steps:
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ${{ matrix.os }}
5757
strategy:
5858
matrix:
59-
java_version: [11]
59+
java_version: [17]
6060
os: [windows-latest]
6161

6262
steps:

.github/workflows/pr-gate-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
java_version: [8]
11+
java_version: [17]
1212
os: [windows-latest]
1313

1414
steps:
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
java_version: [8, 11, 17]
31+
java_version: [17]
3232
os: [windows-latest] # , macOS-latest (remove macOS as it is not stable for now)
3333

3434
steps:
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ${{ matrix.os }}
4949
strategy:
5050
matrix:
51-
java_version: [11]
51+
java_version: [17]
5252
os: [windows-latest]
5353

5454
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
java_version: [8]
14+
java_version: [17]
1515
os: [windows-latest]
1616

1717
steps:

.github/workflows/snapshot-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
java_version: [8]
14+
java_version: [17]
1515
os: [windows-latest]
1616

1717
steps:

0 commit comments

Comments
 (0)