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

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


The following commit(s) were added to refs/heads/master by this push:
     new 28422628 fix(ci): use `1.89` as default Rust version instead of 
`unknown` (#2143)
28422628 is described below

commit 2842262836c574adf29cbf203478ba0367d40c3a
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Mon Sep 1 12:55:27 2025 +0200

    fix(ci): use `1.89` as default Rust version instead of `unknown` (#2143)
    
    Only if `rust-toolchain.toml` is not present.
---
 .github/actions/utils/docker-buildx/action.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/utils/docker-buildx/action.yml 
b/.github/actions/utils/docker-buildx/action.yml
index d10d66de..701fcb44 100644
--- a/.github/actions/utils/docker-buildx/action.yml
+++ b/.github/actions/utils/docker-buildx/action.yml
@@ -220,8 +220,8 @@ runs:
           echo "RUST_VERSION=$ver" >> "$GITHUB_ENV"
           echo "Using toolchain: $ver"
         else
-          echo "RUST_VERSION=unknown" >> "$GITHUB_ENV"
-          echo "No rust-toolchain.toml found; labeling as unknown"
+          echo "RUST_VERSION=1.89" >> "$GITHUB_ENV"
+          echo "No rust-toolchain.toml found; labeling as 1.89"
         fi
 
     - name: Compose build args

Reply via email to