From ace12ab19d0e720c52864f277940dcbf4be6fa9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 May 2021 05:34:22 +0000 Subject: [PATCH] Bump actions-rs/cargo from 1 to 1.0.3 Bumps [actions-rs/cargo](https://github.com/actions-rs/cargo) from 1 to 1.0.3. - [Release notes](https://github.com/actions-rs/cargo/releases) - [Changelog](https://github.com/actions-rs/cargo/blob/master/CHANGELOG.md) - [Commits](https://github.com/actions-rs/cargo/compare/v1...v1.0.3) Signed-off-by: dependabot[bot] --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 02cc6241..d8c7b205 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,13 +20,13 @@ jobs: components: rustfmt, clippy - name: Run cargo fmt - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: fmt args: --all -- --check - name: Run cargo clippy - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: clippy args: --all-features -- -D warnings @@ -53,7 +53,7 @@ jobs: override: true - name: Run cargo build - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: build args: --all-features --target ${{ matrix.target }} @@ -78,7 +78,7 @@ jobs: override: true - name: Run cargo test - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: test args: --all-features