Skip to content

Commit 15936ff

Browse files
committed
1. Quarkus update to 2.16.2.Final
2. Update GRAALVM for JDK 11 to help fix CI error 3. Deprecate adopt-hotspot in favor of temurin squash
1 parent 16d961f commit 15936ff

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/quarkus-build-native.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v3
1818
- uses: graalvm/setup-graalvm@v1
1919
with:
20-
version: '22.2.0'
20+
version: '22.3.0'
2121
java-version: ${{ matrix.java_version }}
2222
components: 'native-image'
2323
github-token: ${{ secrets.GB_TOKEN }}

.github/workflows/quarkus-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-java@v3
1515
with:
16-
distribution: 'adopt-hotspot'
16+
distribution: 'temurin'
1717
java-version: ${{ matrix.java_version }}
1818
cache: 'maven'
1919
- name: Build & test

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ pipeline {
8787
}
8888
environment {
8989
JABBA_VERSION = '[email protected]'
90-
GRAALVM_VERSION = '11.0.13-graalvm-ce-21.3.0'
90+
GRAALVM_VERSION = '11.0.17-graalvm-ce-22.3.0'
9191
}
9292

9393
stages {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
Note: when upgrading the Quarkus version or the DataStax Java driver version, make sure that you
3434
upgrade them in the quickstart module too.
3535
-->
36-
<quarkus.version>2.15.0.Final</quarkus.version>
36+
<quarkus.version>2.16.2.Final</quarkus.version>
3737
<datastax-java-driver.version>4.15.0</datastax-java-driver.version>
3838
<assertj.version>3.23.1</assertj.version>
3939
<maven.compiler.target>11</maven.compiler.target>

quickstart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<inceptionYear>2020</inceptionYear>
2828
<properties>
2929
<java.version>11</java.version>
30-
<quarkus.version>2.15.0.Final</quarkus.version>
30+
<quarkus.version>2.16.2.Final</quarkus.version>
3131
<datastax-java-driver.version>4.15.0</datastax-java-driver.version>
3232
<assertj.version>3.23.1</assertj.version>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)