This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 171ca0f4e ci: update tested Java versions (#3641)
171ca0f4e is described below
commit 171ca0f4e21437247a8e457f84d155214f197200
Author: David Li <[email protected]>
AuthorDate: Tue Oct 28 11:44:47 2025 +0900
ci: update tested Java versions (#3641)
In particular, since ErrorProne is dropping Java 17, we need to do the
same.
---
.github/workflows/java.yml | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml
index f642c9734..3cae486ed 100644
--- a/.github/workflows/java.yml
+++ b/.github/workflows/java.yml
@@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- java: ['11', '17', '21', '24']
+ java: ['11', '17', '21', '25']
steps:
- uses: actions/checkout@v5
with:
@@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- java: ['17', '21']
+ java: ['21', '25']
steps:
- uses: actions/checkout@v5
with:
@@ -198,10 +198,11 @@ jobs:
- java-jni-artifacts
strategy:
matrix:
- java: ['11', '24']
include:
- - { os: Linux, arch: amd64, vcpkg_arch: x64, runner: ubuntu-latest }
- - { os: macOS, arch: arm64v8, vcpkg_arch: arm64, runner:
macos-latest }
+ - { java: '11', os: Linux, arch: amd64, vcpkg_arch: x64, runner:
ubuntu-latest }
+ - { java: '25', os: Linux, arch: amd64, vcpkg_arch: x64, runner:
ubuntu-latest }
+ - { java: '11', os: macOS, arch: arm64v8, vcpkg_arch: arm64, runner:
macos-latest }
+ - { java: '25', os: macOS, arch: arm64v8, vcpkg_arch: arm64, runner:
macos-latest }
steps:
- uses: actions/checkout@v5
with: