From 81dbb6615996e29849a430a28f4264f67f35cc0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 May 2021 09:06:37 +0000 Subject: [PATCH] build(deps): 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/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab8a7cf52b4..158d0b25eaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,16 +21,16 @@ jobs: toolchain: stable override: true - name: cargo fetch - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: fetch - name: Run tests - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: test args: --verbose --all - name: Build - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: build args: --verbose --release @@ -61,7 +61,7 @@ jobs: toolchain: stable override: true - run: rustup component add rustfmt - - uses: actions-rs/cargo@v1 + - uses: actions-rs/cargo@v1.0.3 with: command: fmt args: --all -- --check