This is an automated email from the ASF dual-hosted git repository.

JingsongLi pushed a commit to branch release-0.3
in repository https://gitbox.apache.org/repos/asf/paimon-vector-index.git


The following commit(s) were added to refs/heads/release-0.3 by this push:
     new e953b55  ci: use available JDK for macOS release smoke
e953b55 is described below

commit e953b553b59db5ae93e91876b7f751371ecb3249
Author: JingsongLi <[email protected]>
AuthorDate: Sun Jul 26 20:38:43 2026 +0800

    ci: use available JDK for macOS release smoke
    
    Signed-off-by: JingsongLi <[email protected]>
---
 .github/workflows/release-java.yml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release-java.yml 
b/.github/workflows/release-java.yml
index d05dae0..ac8ca3e 100644
--- a/.github/workflows/release-java.yml
+++ b/.github/workflows/release-java.yml
@@ -197,19 +197,24 @@ jobs:
         include:
           - os: ubuntu-latest
             classpath_separator: ':'
+            java_version: 8
           - os: ubuntu-24.04-arm
             classpath_separator: ':'
+            java_version: 8
+          # Temurin does not provide JDK 8 for GitHub's macOS arm64 runners.
           - os: macos-latest
             classpath_separator: ':'
+            java_version: 17
           - os: windows-latest
             classpath_separator: ';'
+            java_version: 8
     steps:
       - uses: actions/checkout@v6
 
-      - name: Set up JDK ${{ env.JDK_VERSION }}
+      - name: Set up JDK ${{ matrix.java_version }}
         uses: actions/setup-java@v4
         with:
-          java-version: ${{ env.JDK_VERSION }}
+          java-version: ${{ matrix.java_version }}
           distribution: 'temurin'
 
       - name: Download final Java package

Reply via email to