diff --git a/.github/workflows/check-style.yml b/.github/workflows/check-style.yml index 71786f5..582c1d3 100644 --- a/.github/workflows/check-style.yml +++ b/.github/workflows/check-style.yml @@ -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 diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 9a72161..276d2fc 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -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 diff --git a/.github/workflows/rust-windows.yml b/.github/workflows/rust-windows.yml index 9b37d84..0b600e4 100644 --- a/.github/workflows/rust-windows.yml +++ b/.github/workflows/rust-windows.yml @@ -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 }} @@ -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 }} @@ -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 }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d20a6e9..25faede 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 }} @@ -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 }} @@ -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 }}