From 0998c8ba8a8780fa3427307391a78a54e8c9d1c4 Mon Sep 17 00:00:00 2001 From: thomasgouveia Date: Tue, 15 Feb 2022 08:14:24 +0100 Subject: [PATCH] run0: switch to `action-rs` (#3) --- .github/workflows/run0.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run0.yaml b/.github/workflows/run0.yaml index 94ec9ae..d61991a 100644 --- a/.github/workflows/run0.yaml +++ b/.github/workflows/run0.yaml @@ -31,18 +31,18 @@ jobs: run: cargo build - name: Run cargo test - uses: marcopolo/cargo@master + uses: actions-rs/cargo@v1 with: command: test - name: Run cargo fmt check - uses: marcopolo/cargo@master + uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check - name: Run rust lint check - uses: marcopolo/cargo@master + uses: actions-rs/cargo@v1 with: command: clippy args: --all-targets --all-features -- -D warnings \ No newline at end of file