Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Bump actions/cache from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v2...v3)

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and daxpedda committed Mar 21, 2022
1 parent 363a5fd commit 653472a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install Rust
uses: hecrj/setup-rust-action@v1
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cargo/.crates.toml
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
steps:
- name: Load last run details
if: github.event_name != 'pull_request'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/rustc-version.txt
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
-f 2)"
- name: Cache sentry-native
if: steps.rustc-version.outcome != 'failure'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/sentry-native
key:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Load last run details
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/rustc-version.txt
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
-f 2)"
- name: Cache sentry-native
if: steps.rustc-version.outcome != 'failure'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/sentry-native
key:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:
- name: Load last run details
if: github.event_name != 'pull_request'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/rustc-version.txt
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
-f 2)"
- name: Cache sentry-native
if: steps.rustc-version.outcome != 'failure'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/sentry-native
key:
Expand Down

0 comments on commit 653472a

Please sign in to comment.