From 7a2e06d82e8b8609df1c93c76d1cfe42281935db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Dec 2022 17:03:40 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.2 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v3.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/rust-windows.yml | 18 +++++++++--------- .github/workflows/rust.yml | 6 +++--- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/rust-windows.yml b/.github/workflows/rust-windows.yml index 0b600e4..72aebcf 100644 --- a/.github/workflows/rust-windows.yml +++ b/.github/workflows/rust-windows.yml @@ -70,19 +70,19 @@ jobs: shell: bash - name: Cache cargo registry - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: $HOME/.cargo/registry key: cargo-registry-${{ env['cache_hash'] }} - name: Cache cargo index - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: $HOME/.cargo/git key: cargo-git-${{ env['cache_hash'] }} - name: Cache cargo build - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: target key: cargo-target-${{ env['cache_hash'] }} @@ -156,19 +156,19 @@ jobs: shell: bash - name: Cache cargo registry - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: $HOME/.cargo/registry key: cargo-registry-${{ env['cache_hash'] }} - name: Cache cargo index - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: $HOME/.cargo/git key: cargo-git-${{ env['cache_hash'] }} - name: Cache cargo build - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: target key: cargo-target-${{ env['cache_hash'] }} @@ -253,19 +253,19 @@ jobs: shell: bash - name: Cache cargo registry - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: $HOME/.cargo/registry key: cargo-registry-${{ env['cache_hash'] }} - name: Cache cargo index - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: $HOME/.cargo/git key: cargo-git-${{ env['cache_hash'] }} - name: Cache cargo build - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: target key: cargo-target-${{ env['cache_hash'] }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 25faede..830b756 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -57,7 +57,7 @@ jobs: - uses: Swatinem/rust-cache@v1.3.0 - name: Cache sccache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: "$HOME/sccache" key: sccache-${{ env['cache_hash'] }} @@ -127,7 +127,7 @@ jobs: - uses: Swatinem/rust-cache@v1.3.0 - name: Cache sccache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: "$HOME/sccache" key: sccache-${{ env['cache_hash'] }} @@ -208,7 +208,7 @@ jobs: - uses: Swatinem/rust-cache@v1.3.0 - name: Cache sccache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.2 with: path: "$HOME/sccache" key: sccache-${{ env['cache_hash'] }}