Skip to content

Commit ac63e4a

Browse files
committed
Move Java baseline to 17
1 parent 58f94d8 commit ac63e4a

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

.github/workflows/daily.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
java: [ 11 ]
12+
java: [ 17 ]
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions/cache@v3
@@ -45,7 +45,7 @@ jobs:
4545
needs: quarkus-main-build
4646
strategy:
4747
matrix:
48-
java: [ 11 ]
48+
java: [ 17 ]
4949
steps:
5050
- uses: actions/checkout@v4
5151
- uses: actions/cache@v3
@@ -88,8 +88,8 @@ jobs:
8888
needs: quarkus-main-build
8989
strategy:
9090
matrix:
91-
java: [ 11 ]
92-
image: [ "ubi-quarkus-graalvmce-builder-image:jdk-17", "ubi-quarkus-mandrel-builder-image:23.0-java17" ]
91+
java: [ 17 ]
92+
image: [ "ubi-quarkus-graalvmce-builder-image:jdk-21", "ubi-quarkus-mandrel-builder-image:jdk-21" ]
9393
steps:
9494
- uses: actions/checkout@v4
9595
- uses: actions/cache@v3
@@ -134,7 +134,7 @@ jobs:
134134
needs: quarkus-main-build
135135
strategy:
136136
matrix:
137-
java: [ 11 ]
137+
java: [ 17 ]
138138
steps:
139139
- uses: actions/checkout@v4
140140
- uses: actions/cache@v3
@@ -178,9 +178,9 @@ jobs:
178178
needs: quarkus-main-build
179179
strategy:
180180
matrix:
181-
java: [ 11 ]
182-
graalvm-version: ["mandrel-23.0.1.2-Final"]
183-
graalvm-java-version: [ "17" ]
181+
java: [ 17 ]
182+
graalvm-version: ["mandrel-latest"]
183+
graalvm-java-version: [ "21" ]
184184
steps:
185185
- uses: actions/checkout@v4
186186
- uses: actions/cache@v3

.github/workflows/pr.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: [ 11 ]
10+
java: [ 17 ]
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: actions/cache@v3
@@ -43,8 +43,8 @@ jobs:
4343
needs: quarkus-main-build
4444
strategy:
4545
matrix:
46-
java: [ 11 ]
47-
image: [ "ubi-quarkus-mandrel-builder-image:23.0-java17"]
46+
java: [ 17 ]
47+
image: [ "ubi-quarkus-mandrel-builder-image:jdk-21"]
4848
steps:
4949
- uses: actions/checkout@v4
5050
- uses: actions/cache@v3
@@ -85,7 +85,7 @@ jobs:
8585
needs: quarkus-main-build
8686
strategy:
8787
matrix:
88-
java: [ 11 ]
88+
java: [ 17 ]
8989
steps:
9090
- uses: actions/checkout@v4
9191
- uses: actions/cache@v3
@@ -145,9 +145,9 @@ jobs:
145145
needs: quarkus-main-build
146146
strategy:
147147
matrix:
148-
java: [ 11 ]
149-
graalvm-version: ["mandrel-23.0.1.2-Final"]
150-
graalvm-java-version: [ "17" ]
148+
java: [ 17 ]
149+
graalvm-version: ["mandrel-latest"]
150+
graalvm-java-version: [ "21" ]
151151
steps:
152152
- uses: actions/checkout@v4
153153
- uses: actions/cache@v3

.github/workflows/quarkus-snapshot.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci
1111
ECOSYSTEM_CI_REPO_FILE: context.yaml
12-
JAVA_VERSION: 11
12+
JAVA_VERSION: 17
1313

1414
#########################
1515
# Repo specific setting #

300-quarkus-vertx-webClient/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
To compile and run this demo you will need:
1010

11-
- JDK 11+
11+
- JDK 17+
1212

1313
## Scope of the testing
1414

301-quarkus-vertx-kafka/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
To compile and run this demo you will need:
2121

22-
- JDK 11+
22+
- JDK 17+
2323
- Docker / docker-compose
2424

2525
### Scope of the testing

302-quarkus-vertx-jwt/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ this.router.get("/secured")
3838

3939
To compile and run this demo you will need:
4040

41-
- JDK 11+
41+
- JDK 17+
4242
- Docker
4343

4444
## Scope of the testing

303-quarkus-vertx-sql/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
To compile and run this demo you will need:
88

9-
- JDK 11+
9+
- JDK 17+
1010
- Docker
1111
- PostgreSQL
1212
- MySQL

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Beefy scenarios for Quarkus
33

44
## Prerequisites
5-
- JDK 11
5+
- JDK 17+
66
- Docker
77

88
## Test-suite Execution

0 commit comments

Comments
 (0)