From db2a51cd72c668094cbe6fb580bb92af2535bc73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 05:38:31 +0000 Subject: [PATCH] Bump actions/cache from 3.3.3 to 4.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.3 to 4.0.0. - [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/v3.3.3...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cargo-build-types-only.yml | 6 +++--- .github/workflows/cargo-build-wasm.yml | 6 +++--- .github/workflows/cargo-clippy.yml | 6 +++--- .github/workflows/cargo-doc.yml | 6 +++--- .github/workflows/make-generate.yml | 6 +++--- .github/workflows/make-release.yml | 6 +++--- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/cargo-build-types-only.yml b/.github/workflows/cargo-build-types-only.yml index 4280a738..42a83c37 100644 --- a/.github/workflows/cargo-build-types-only.yml +++ b/.github/workflows/cargo-build-types-only.yml @@ -19,17 +19,17 @@ jobs: override: true components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/cargo-build-wasm.yml b/.github/workflows/cargo-build-wasm.yml index 65b925dc..8701d6b6 100644 --- a/.github/workflows/cargo-build-wasm.yml +++ b/.github/workflows/cargo-build-wasm.yml @@ -19,17 +19,17 @@ jobs: override: true components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/cargo-clippy.yml b/.github/workflows/cargo-clippy.yml index dafe811d..27017377 100644 --- a/.github/workflows/cargo-clippy.yml +++ b/.github/workflows/cargo-clippy.yml @@ -19,17 +19,17 @@ jobs: override: true components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/cargo-doc.yml b/.github/workflows/cargo-doc.yml index 5f690804..ab54eb7b 100644 --- a/.github/workflows/cargo-doc.yml +++ b/.github/workflows/cargo-doc.yml @@ -19,17 +19,17 @@ jobs: override: true components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo doc - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: target key: ${{ runner.os }}-cargo-doc-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/make-generate.yml b/.github/workflows/make-generate.yml index 56a8479a..e217f691 100644 --- a/.github/workflows/make-generate.yml +++ b/.github/workflows/make-generate.yml @@ -29,17 +29,17 @@ jobs: rustup component add clippy echo PATH="${HOME}/.cargo/bin:${PATH}" >> ${GITHUB_ENV} - name: Cache cargo registry - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index ef9fe7cd..60d1463a 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -22,17 +22,17 @@ jobs: - uses: taiki-e/install-action@cargo-llvm-cov - uses: taiki-e/install-action@nextest - name: Cache cargo registry - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}