Skip to content

Commit 8b0cb19

Browse files
chore(deps): update actions/cache action to v5
1 parent 1b6c0cf commit 8b0cb19

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ jobs:
2929
uses: jdx/mise-action@e3d7b8d67a7958d1207f6ed871e83b1ea780e7b0 # v3.3.1
3030

3131
- name: Cache cargo registry
32-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
32+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
3333
with:
3434
path: ~/.cargo/registry
3535
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
3636

3737
- name: Cache cargo index
38-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
38+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
3939
with:
4040
path: ~/.cargo/git
4141
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
4242

4343
- name: Cache cargo build
44-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
44+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
4545
with:
4646
path: target
4747
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -135,19 +135,19 @@ jobs:
135135
uses: jdx/mise-action@e3d7b8d67a7958d1207f6ed871e83b1ea780e7b0 # v3.3.1
136136

137137
- name: Cache cargo registry
138-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
138+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
139139
with:
140140
path: ~/.cargo/registry
141141
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
142142

143143
- name: Cache cargo index
144-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
144+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
145145
with:
146146
path: ~/.cargo/git
147147
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
148148

149149
- name: Cache cargo build
150-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
150+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
151151
with:
152152
path: target
153153
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ jobs:
3535
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3636

3737
- name: Cache cargo registry
38-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
38+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
3939
with:
4040
path: ~/.cargo/registry
4141
key: ${{ runner.os }}-${{ matrix.target }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
4242

4343
- name: Cache cargo index
44-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
44+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
4545
with:
4646
path: ~/.cargo/git
4747
key: ${{ runner.os }}-${{ matrix.target }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
4848

4949
- name: Cache cargo build
50-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
50+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
5151
with:
5252
path: target
5353
key: ${{ runner.os }}-${{ matrix.target }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)