Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4 (#19)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

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

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 8, 2024
1 parent 0fca3ab commit 7b33846
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -144,7 +144,7 @@ jobs:
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Cache ~/.cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-coverage-dotcargo
Expand All @@ -163,7 +163,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -178,7 +178,7 @@ jobs:
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Cache ~/.cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-coverage-dotcargo
Expand All @@ -202,7 +202,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:
# steps:
# - uses: actions/checkout@v4
# - name: Cache cargo build and registry
# uses: actions/cache@v3
# uses: actions/cache@v4
# with:
# path: |
# ~/.cargo/registry
Expand All @@ -345,7 +345,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -421,12 +421,12 @@ jobs:
crate: cargo-tarpaulin
version: latest
- name: Cache ~/.cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-coverage-dotcargo
- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-coverage-cargo-build-target
Expand Down

0 comments on commit 7b33846

Please sign in to comment.