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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 654f4e878c [python] Fix rust toolchain action check (#7583)
654f4e878c is described below

commit 654f4e878c168166ded38febf89c8bec0ec34bbf
Author: umi <[email protected]>
AuthorDate: Thu Apr 2 17:53:35 2026 +0800

    [python] Fix rust toolchain action check (#7583)
---
 .github/workflows/paimon-python-checks.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/paimon-python-checks.yml 
b/.github/workflows/paimon-python-checks.yml
index a797257e06..0154c637f6 100755
--- a/.github/workflows/paimon-python-checks.yml
+++ b/.github/workflows/paimon-python-checks.yml
@@ -80,7 +80,9 @@ jobs:
           mvn -version
 
       - name: Install Rust toolchain
-        uses: dtolnay/rust-toolchain@stable
+        run: |
+          curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- 
-y --default-toolchain stable --profile minimal
+          echo "$HOME/.cargo/bin" >> $GITHUB_PATH
 
       - name: Build Tantivy native library
         run: |

Reply via email to