Skip to content

Commit f20228a

Browse files
committed
feat(ci): build with Java 21 and 24
Signed-off-by: Chris Laprun <[email protected]>
1 parent cc3d0cc commit f20228a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
integration_tests:
1111
strategy:
1212
matrix:
13-
java: [ 17, 21 ]
13+
java: [ 21, 24 ]
1414
kubernetes: [ 'v1.29.12','1.30.8', '1.31.4', '1.32.0' ]
1515
uses: ./.github/workflows/integration-tests.yml
1616
with:
@@ -23,7 +23,7 @@ jobs:
2323
httpclient: [ 'vertx', 'jdk', 'jetty' ]
2424
uses: ./.github/workflows/integration-tests.yml
2525
with:
26-
java-version: 21
26+
java-version: 24
2727
kube-version: '1.32.0'
2828
http-client: ${{ matrix.httpclient }}
2929
experimental: true
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
strategy:
3535
matrix:
36-
java: [ 17, 21 ]
36+
java: [ 21, 24 ]
3737
steps:
3838
- uses: actions/checkout@v4
3939
- name: Set up Java and Maven

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-java@v4
2323
with:
2424
distribution: temurin
25-
java-version: 17
25+
java-version: 21
2626
cache: 'maven'
2727
- name: Check code format
2828
run: |

0 commit comments

Comments
 (0)