diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index 0cbaa9db..d3832088 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -50,7 +50,7 @@ jobs: ref: ${{ github.event.release.target_commitish }} token: ${{ secrets.BOTTY_GITHUB_TOKEN }} - - uses: Swatinem/rust-cache@v1.4.0 + - uses: Swatinem/rust-cache@v2.0.0 - name: Install compiler for armhf arch if: matrix.target == 'armv7-unknown-linux-gnueabihf' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7fa4eac..8abde22a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.0.2 - - uses: Swatinem/rust-cache@v1.4.0 + - uses: Swatinem/rust-cache@v2.0.0 - name: Check formatting - uses: dprint/check@v2.0 + uses: dprint/check@v2.1 - name: Run clippy with default features run: cargo clippy --workspace --all-targets -- -D warnings @@ -44,7 +44,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.0.2 - - uses: Swatinem/rust-cache@v1.4.0 + - uses: Swatinem/rust-cache@v2.0.0 - name: Install compiler for armhf arch if: matrix.target == 'armv7-unknown-linux-gnueabihf' @@ -77,7 +77,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.0.2 - - uses: Swatinem/rust-cache@v1.4.0 + - uses: Swatinem/rust-cache@v2.0.0 - name: Build tests run: cargo build --tests --workspace --all-features @@ -113,7 +113,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.0.2 - - uses: Swatinem/rust-cache@v1.4.0 + - uses: Swatinem/rust-cache@v2.0.0 - name: Run test ${{ matrix.test_name }} run: cargo test --package swap --all-features --test ${{ matrix.test_name }} -- --nocapture