This is an automated email from the ASF dual-hosted git repository.
hubcio 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 cecffeb0a ci: prepend ~/.cargo/bin to PATH after rustup show (#3251)
cecffeb0a is described below
commit cecffeb0afca6086a5edbb82b319c43aa9244208
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Thu May 14 10:03:59 2026 +0200
ci: prepend ~/.cargo/bin to PATH after rustup show (#3251)
---
.github/actions/utils/setup-rust-with-cache/action.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/actions/utils/setup-rust-with-cache/action.yml
b/.github/actions/utils/setup-rust-with-cache/action.yml
index bf86d6aab..5c7a16fb3 100644
--- a/.github/actions/utils/setup-rust-with-cache/action.yml
+++ b/.github/actions/utils/setup-rust-with-cache/action.yml
@@ -58,7 +58,9 @@ runs:
shell: bash
- name: Setup Rust toolchain
- run: rustup show
+ run: |
+ rustup show
+ echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
shell: bash
- name: Setup Rust cache