From 300ce12a290736ec54d2fc250a51e921dd34d349 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 May 2021 07:54:02 +1000 Subject: [PATCH] build(deps): bump actions-rs/cargo from 1 to 1.0.3 (#2140) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f40375533..03afe9672 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: profile: minimal override: true - name: cargo fetch - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: fetch - name: Install LLVM on Windows @@ -54,7 +54,7 @@ jobs: echo "CARGO_INCREMENTAL=${{ env.CARGO_INCREMENTAL }}" echo "RUST_BACKTRACE=${{ env.RUST_BACKTRACE }}" - name: Run tests - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: test args: --verbose --all @@ -62,7 +62,7 @@ jobs: - name: Run zebrad large sync tests # Skip the entire step on Ubuntu and Windows, because the test would be skipped anyway due to ZEBRA_SKIP_NETWORK_TESTS if: matrix.os == 'macOS-latest' - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: test args: --verbose --manifest-path zebrad/Cargo.toml sync_large_checkpoints_ -- --ignored @@ -87,7 +87,7 @@ jobs: profile: minimal override: true - name: cargo fetch - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: fetch - name: Show env vars @@ -116,7 +116,7 @@ jobs: profile: minimal override: true - name: cargo fetch - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: fetch - name: Show env vars @@ -125,7 +125,7 @@ jobs: echo "CARGO_INCREMENTAL=${{ env.CARGO_INCREMENTAL }}" echo "RUST_BACKTRACE=${{ env.RUST_BACKTRACE }}" - name: Build - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@v1.0.3 with: command: build args: --verbose --release @@ -178,7 +178,7 @@ jobs: echo "ZEBRA_SKIP_NETWORK_TESTS=${{ env.ZEBRA_SKIP_NETWORK_TESTS }}" echo "CARGO_INCREMENTAL=${{ env.CARGO_INCREMENTAL }}" echo "RUST_BACKTRACE=${{ env.RUST_BACKTRACE }}" - - uses: actions-rs/cargo@v1 + - uses: actions-rs/cargo@v1.0.3 with: command: fmt args: --all -- --check