From 5b4054c386cb357ee1ac6c7606c91f5d08db19d3 Mon Sep 17 00:00:00 2001 From: ramn Date: Fri, 15 Mar 2024 21:33:44 +0100 Subject: [PATCH] chore: replace the rust builder action (#8) chore: replace the rust builder action as the old one stopped working --- .github/workflows/quickstart.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/quickstart.yml b/.github/workflows/quickstart.yml index d627fe4..9d2734b 100644 --- a/.github/workflows/quickstart.yml +++ b/.github/workflows/quickstart.yml @@ -8,6 +8,7 @@ jobs: steps: - uses: actions/checkout@v1 - - uses: icepuma/rust-action@master + - uses: rust-build/rust-build.action@v1.4.5 with: + RUSTTARGET: x86_64-unknown-linux-musl args: cargo fmt -- --check && ./clippy.sh && cargo test --locked