This is an automated email from the ASF dual-hosted git repository.
stoty pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite-avatica.git
The following commit(s) were added to refs/heads/main by this push:
new 71c348bd6 [CALCITE-6808] Use JDK23 instead of JDK22 in CI test for
latest JVM in Avatica
71c348bd6 is described below
commit 71c348bd6c2691f5e2e94693e67abd4416fecaca
Author: Istvan Toth <[email protected]>
AuthorDate: Tue Jan 28 15:47:08 2025 +0100
[CALCITE-6808] Use JDK23 instead of JDK22 in CI test for latest JVM in
Avatica
---
.github/workflows/main.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index fb821355f..4e1787f4d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -204,14 +204,14 @@ jobs:
run: |
./gradlew --no-parallel --no-daemon tasks build javadoc
- linux-jdk22:
- name: 'Linux (JDK 22)'
+ linux-jdk23:
+ name: 'Linux (JDK 23)'
runs-on: ubuntu-latest
steps:
- - name: 'Set up JDK 22'
+ - name: 'Set up JDK 23'
uses: actions/setup-java@v4
with:
- java-version: 22
+ java-version: 23
distribution: 'zulu'
- uses: actions/checkout@v4
with: