diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index d4baf28b..a6ea94e0 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@v2.0.0 + - uses: Swatinem/rust-cache@v2.0.1 - 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 1a4f1d13..b2cb5f17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.1.0 - - uses: Swatinem/rust-cache@v2.0.0 + - uses: Swatinem/rust-cache@v2.0.1 - name: Check formatting uses: dprint/check@v2.1 @@ -43,7 +43,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.1.0 - - uses: Swatinem/rust-cache@v2.0.0 + - uses: Swatinem/rust-cache@v2.0.1 - name: Install compiler for armhf arch if: matrix.target == 'armv7-unknown-linux-gnueabihf' @@ -76,7 +76,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.1.0 - - uses: Swatinem/rust-cache@v2.0.0 + - uses: Swatinem/rust-cache@v2.0.1 - name: Build tests run: cargo build --tests --workspace --all-features @@ -112,7 +112,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3.1.0 - - uses: Swatinem/rust-cache@v2.0.0 + - uses: Swatinem/rust-cache@v2.0.1 - name: Run test ${{ matrix.test_name }} run: cargo test --package swap --all-features --test ${{ matrix.test_name }} -- --nocapture