Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Aug 22, 2022
1 parent b981fc9 commit 826aa36
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@v3.0.2
uses: actions/cache@v3.0.8
with:
path: $HOME/.cargo/registry
key: cargo-registry-${{ env['cache_hash'] }}

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

- name: Cache cargo build
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.8
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@v3.0.2
uses: actions/cache@v3.0.8
with:
path: $HOME/.cargo/registry
key: cargo-registry-${{ env['cache_hash'] }}

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

- name: Cache cargo build
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.8
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@v3.0.2
uses: actions/cache@v3.0.8
with:
path: $HOME/.cargo/registry
key: cargo-registry-${{ env['cache_hash'] }}

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

- name: Cache cargo build
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.8
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.4.0

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

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

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

0 comments on commit 826aa36

Please sign in to comment.