Skip to content

Commit

Permalink
Bump actions/cache from 2.1.6 to 3.0.2 (#112)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.0.2.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v2.1.6...v3.0.2)

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

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Apr 21, 2022
1 parent a95288e commit 5cadac7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/rust-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,19 @@ jobs:
shell: bash

- name: Cache cargo registry
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: $HOME/.cargo/registry
key: cargo-registry-${{ env['cache_hash'] }}

- name: Cache cargo index
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: $HOME/.cargo/git
key: cargo-git-${{ env['cache_hash'] }}

- name: Cache cargo build
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: target
key: cargo-target-${{ env['cache_hash'] }}
Expand Down Expand Up @@ -156,19 +156,19 @@ jobs:
shell: bash

- name: Cache cargo registry
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: $HOME/.cargo/registry
key: cargo-registry-${{ env['cache_hash'] }}

- name: Cache cargo index
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: $HOME/.cargo/git
key: cargo-git-${{ env['cache_hash'] }}

- name: Cache cargo build
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: target
key: cargo-target-${{ env['cache_hash'] }}
Expand Down Expand Up @@ -253,19 +253,19 @@ jobs:
shell: bash

- name: Cache cargo registry
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: $HOME/.cargo/registry
key: cargo-registry-${{ env['cache_hash'] }}

- name: Cache cargo index
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: $HOME/.cargo/git
key: cargo-git-${{ env['cache_hash'] }}

- name: Cache cargo build
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: target
key: cargo-target-${{ env['cache_hash'] }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- uses: Swatinem/rust-cache@v1.3.0

- name: Cache sccache
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: "$HOME/sccache"
key: sccache-${{ env['cache_hash'] }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- uses: Swatinem/rust-cache@v1.3.0

- name: Cache sccache
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: "$HOME/sccache"
key: sccache-${{ env['cache_hash'] }}
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- uses: Swatinem/rust-cache@v1.3.0

- name: Cache sccache
uses: actions/cache@v2.1.6
uses: actions/cache@v3.0.2
with:
path: "$HOME/sccache"
key: sccache-${{ env['cache_hash'] }}
Expand Down

0 comments on commit 5cadac7

Please sign in to comment.