From fa94a763ee091ac98ceb2f6303b7166d9655fcc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jan 2023 13:09:24 +0000 Subject: [PATCH] build(deps): Bump actions/cache from 2.1.6 to 3.2.3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.3. - [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.3) --- 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 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dff2d46700..6045ddf6e4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,13 +20,13 @@ jobs: - uses: actions/checkout@v2.3.4 - name: Cache CARGO_HOME - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: target key: cargo-build-target-${{ hashFiles('Cargo.toml') }} @@ -81,13 +81,13 @@ jobs: run: apt-get install -y cmake - name: Cache CARGO_HOME - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: target key: wasm-cargo-build-target-${{ hashFiles('Cargo.toml') }} @@ -138,13 +138,13 @@ jobs: components: clippy - name: Cache CARGO_HOME - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: target key: cargo-build-target-${{ hashFiles('Cargo.toml') }} @@ -169,13 +169,13 @@ jobs: - uses: actions/checkout@v2.3.4 - name: Cache CARGO_HOME - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: ~/.cargo key: cargo-home-${{ hashFiles('Cargo.toml') }} - name: Cache cargo build - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.3 with: path: target key: cargo-build-target-${{ hashFiles('Cargo.toml') }}