From 6cfe1c38aba696a09c8c170d50fea7f26e05ea5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Mar 2022 23:06:47 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [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...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69f74d5cdbb..0c5b6aa7c89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,13 +20,13 @@ jobs: - uses: actions/checkout@v2 - name: Cache CARGO_HOME - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: target key: cargo-build-target-${{ hashFiles('Cargo.toml') }} @@ -71,13 +71,13 @@ jobs: run: apt-get install -y cmake - name: Cache CARGO_HOME - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: target key: wasm-cargo-build-target-${{ hashFiles('Cargo.toml') }} @@ -123,13 +123,13 @@ jobs: components: clippy - name: Cache CARGO_HOME - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: target key: cargo-build-target-${{ hashFiles('Cargo.toml') }} @@ -158,13 +158,13 @@ jobs: override: true - name: Cache CARGO_HOME - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: target key: cargo-build-target-${{ hashFiles('Cargo.toml') }} @@ -190,13 +190,13 @@ jobs: - uses: actions/checkout@v2 - name: Cache CARGO_HOME - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: target key: cargo-build-target-${{ hashFiles('Cargo.toml') }}