Skip to content

Commit

Permalink
⬆️ Bump actions/cache from 4.0.2 to 4.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/cache](/~https://github.com/actions/cache) from 4.0.2 to 4.2.0.
- [Release notes](/~https://github.com/actions/cache/releases)
- [Changelog](/~https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.0.2...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Dec 9, 2024
1 parent 208ab48 commit 334ff95
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ jobs:
components: clippy
# caching
- name: Cache cargo registry
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -75,17 +75,17 @@ jobs:
profile: minimal
# caching
- name: Cache cargo registry
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -108,17 +108,17 @@ jobs:
profile: minimal
# caching
- name: Cache cargo registry
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -149,17 +149,17 @@ jobs:
profile: minimal
# caching
- name: Cache cargo registry
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: target
key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

# Cache files between builds
- name: Setup | Cache Cargo
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: |
~/.cargo/registry
Expand Down

0 comments on commit 334ff95

Please sign in to comment.