Skip to content

Commit

Permalink
Bump actions-rs/cargo from 1.0.1 to 1.0.3 (#87)
Browse files Browse the repository at this point in the history
Bumps [actions-rs/cargo](https://github.com/actions-rs/cargo) from 1.0.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](actions-rs/cargo@v1.0.1...v1.0.3)

---
updated-dependencies:
- dependency-name: actions-rs/cargo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 17, 2021
1 parent ab38081 commit d1393e1
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
override: true

- name: Checking style
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: fmt
toolchain: stable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
override: true

- name: Checking clippy
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: clippy
toolchain: stable
args: --all

- name: Checking clippy
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: clippy
toolchain: stable
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/rust-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
key: cargo-target-${{ env['cache_hash'] }}

- name: Checking ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: check
toolchain: ${{ matrix.toolchain }}
Expand Down Expand Up @@ -174,14 +174,14 @@ jobs:
key: cargo-target-${{ env['cache_hash'] }}

- name: Testing ${{ matrix.platform }}-${{ matrix.toolchain }} (debug build)
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: test
toolchain: ${{ matrix.toolchain }}
args: --all --verbose

- name: Testing ${{ matrix.platform }}-${{ matrix.toolchain }} (release build)
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: test
toolchain: ${{ matrix.toolchain }}
Expand Down Expand Up @@ -271,35 +271,35 @@ jobs:
key: cargo-target-${{ env['cache_hash'] }}

- name: Building ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --all --verbose --release

- name: Building `no default` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --verbose --no-default-features

- name: Building `hmac` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --verbose --no-default-features --features hmac

- name: Building `static-context` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --verbose --no-default-features --features static-context

- name: Building `lazy-static-context` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

# here comes different part
- name: Checking ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: check
toolchain: ${{ matrix.toolchain }}
Expand Down Expand Up @@ -141,14 +141,14 @@ jobs:

# here comes different part
- name: Testing ${{ matrix.platform }}-${{ matrix.toolchain }} (debug build)
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: test
toolchain: ${{ matrix.toolchain }}
args: --all --verbose

- name: Testing ${{ matrix.platform }}-${{ matrix.toolchain }} (release build)
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: test
toolchain: ${{ matrix.toolchain }}
Expand Down Expand Up @@ -222,35 +222,35 @@ jobs:

# here comes different part
- name: Building ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --all --verbose --release

- name: Building `no default` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --verbose --no-default-features

- name: Building `hmac` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --verbose --no-default-features --features hmac

- name: Building `static-context` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
args: --verbose --no-default-features --features static-context

- name: Building `lazy-static-context` ${{ matrix.platform }}-${{ matrix.toolchain }}
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1.0.3
with:
command: build
toolchain: ${{ matrix.toolchain }}
Expand Down

0 comments on commit d1393e1

Please sign in to comment.