diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 801943be5f..ca51be846f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -24,6 +24,8 @@ jobs: toolchain: ${{ env.RUST_TOOLCHAIN }} override: true profile: minimal + - name: Rust Cache + uses: Swatinem/rust-cache@v2.0.0 - name: Cleanup disk uses: curoky/cleanup-disk-action@v2.0 with: diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 0afdda9a41..03cb650659 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -20,6 +20,8 @@ jobs: profile: minimal toolchain: ${{ env.RUST_TOOLCHAIN }} override: true + - name: Rust Cache + uses: Swatinem/rust-cache@v2.0.0 - uses: actions-rs/cargo@v1 with: command: check @@ -37,6 +39,8 @@ jobs: profile: minimal toolchain: ${{ env.RUST_TOOLCHAIN }} override: true + - name: Rust Cache + uses: Swatinem/rust-cache@v2.0.0 - uses: actions-rs/cargo@v1 with: command: test @@ -60,6 +64,8 @@ jobs: profile: minimal toolchain: ${{ env.RUST_TOOLCHAIN }} override: true + - name: Rust Cache + uses: Swatinem/rust-cache@v2.0.0 - run: rustup component add rustfmt - uses: actions-rs/cargo@v1 with: @@ -78,6 +84,8 @@ jobs: profile: minimal toolchain: ${{ env.RUST_TOOLCHAIN }} override: true + - name: Rust Cache + uses: Swatinem/rust-cache@v2.0.0 - run: rustup component add clippy - uses: actions-rs/cargo@v1 with: diff --git a/Cargo.lock b/Cargo.lock index b5ac903dc3..924318bdff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4434,8 +4434,8 @@ dependencies = [ "datatypes", "futures", "futures-util", - "paste", "log-store", + "paste", "query", "ron", "rustpython-ast",