From e3330bf2512c65de368b5393168abe4f03c98e6f Mon Sep 17 00:00:00 2001 From: Yasir Date: Mon, 25 Nov 2024 15:31:49 +0300 Subject: [PATCH] chore: update Rust setup action to modify PATH for cargo binaries --- .github/actions/rust/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/rust/setup/action.yml b/.github/actions/rust/setup/action.yml index 684723e..371d4d3 100644 --- a/.github/actions/rust/setup/action.yml +++ b/.github/actions/rust/setup/action.yml @@ -10,7 +10,7 @@ runs: apt-get update apt-get install -y curl curl https://sh.rustup.rs -sSf | sh -s -- -y - source $HOME/.cargo/env + echo "$HOME/.cargo/bin" >> $GITHUB_PATH rustup update rustup component add clippy