From 8d0d5d791acaacbfe16d253d818fadc7a0b5da9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:19:12 -0700 Subject: [PATCH] Bump actions/cache from 4.0.2 to 4.1.0 (#570) Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.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/v4.0.2...v4.1.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 f02b026d..89d60b7e 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@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.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 f502a3bf..d05eb4a2 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@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.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 d510dab6..2c0534e0 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@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.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 2ff0d0a0..3e82f142 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@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo doc - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.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 0084f168..04d76058 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@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.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 57b09d66..61326113 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -24,17 +24,17 @@ jobs: - uses: taiki-e/install-action@cargo-llvm-cov - uses: taiki-e/install-action@nextest - name: Cache cargo registry - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}