From b9cd458ea8eb60f642c257576702905121f442c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 May 2021 05:31:40 +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/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7fcc42..baa474d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,13 +27,13 @@ jobs: components: rustfmt, clippy - name: Check Code Format - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: fmt args: --all -- --check - name: Code Lint - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: clippy args: --all --all-targets -- -D warnings @@ -59,7 +59,7 @@ jobs: override: true - name: Build - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: build args: --no-default-features --target thumbv6m-none-eabi @@ -84,7 +84,7 @@ jobs: override: true - name: Test - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: test args: --all