Skip to content

Commit aff62f4

Browse files
chore(deps): update actions/cache action to v5.0.2 (#78)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 0bdd4ec commit aff62f4

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ jobs:
5858
- name: Install sccache
5959
run: brew install sccache
6060
- name: Cache sccache
61-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
61+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
6262
with:
6363
path: ~/Library/Caches/Mozilla.sccache
6464
key: ${{ runner.os }}-sccache-${{ hashFiles('**/Cargo.lock') }}
6565
- name: Cache cargo registry
66-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
66+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
6767
with:
6868
path: ~/.cargo/registry
6969
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
7070
- name: Cache cargo index
71-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
71+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
7272
with:
7373
path: ~/.cargo/git
7474
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
@@ -98,22 +98,22 @@ jobs:
9898
- name: Install sccache
9999
run: brew install sccache
100100
- name: Cache sccache
101-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
101+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
102102
with:
103103
path: ~/Library/Caches/Mozilla.sccache
104104
key: ${{ runner.os }}-sccache-${{ hashFiles('**/Cargo.lock') }}
105105
- name: Cache cargo registry
106-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
106+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
107107
with:
108108
path: ~/.cargo/registry
109109
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
110110
- name: Cache cargo index
111-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
111+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
112112
with:
113113
path: ~/.cargo/git
114114
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
115115
- name: Cache cargo tools
116-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
116+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
117117
with:
118118
path: ~/.cargo/bin
119119
key: ${{ runner.os }}-cargo-tools-llvm-cov-${{ hashFiles('**/Cargo.lock') }}
@@ -153,17 +153,17 @@ jobs:
153153
- name: Install sccache
154154
run: brew install sccache
155155
- name: Cache sccache
156-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
156+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
157157
with:
158158
path: ~/Library/Caches/Mozilla.sccache
159159
key: ${{ runner.os }}-sccache-${{ hashFiles('**/Cargo.lock') }}
160160
- name: Cache cargo registry
161-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
161+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
162162
with:
163163
path: ~/.cargo/registry
164164
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
165165
- name: Cache cargo index
166-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
166+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
167167
with:
168168
path: ~/.cargo/git
169169
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,19 @@ jobs:
6868
git push origin "${{ steps.version.outputs.TAG_NAME }}"
6969
7070
- name: Cache cargo registry
71-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
71+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
7272
with:
7373
path: ~/.cargo/registry
7474
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
7575

7676
- name: Cache cargo index
77-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
77+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
7878
with:
7979
path: ~/.cargo/git
8080
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
8181

8282
- name: Cache cargo build
83-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
83+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
8484
with:
8585
path: target
8686
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)