Skip to content

Commit 56a511d

Browse files
authored
Merge pull request #1612 from scrtlabs/dependabot/github_actions/actions/cache-4
Bump actions/cache from 3 to 4
2 parents 956b1d7 + 7157f7a commit 56a511d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
chmod +x "$SDK_BIN"
2020
echo yes | ./"$SDK_BIN"
2121
- name: Cache cargo registry
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.cargo/registry
2525
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2626
- name: Cache xargo sysroot
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.xargo
3030
key: ${{ runner.os }}-xargo-sysroot
3131
- name: Cache build artifacts
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.cache/sccache
3535
key: ${{ runner.os }}-sccache
@@ -193,17 +193,17 @@ jobs:
193193
chmod +x "$SDK_BIN"
194194
echo yes | ./"$SDK_BIN"
195195
- name: Cache cargo registry
196-
uses: actions/cache@v3
196+
uses: actions/cache@v4
197197
with:
198198
path: ~/.cargo/registry
199199
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
200200
- name: Cache xargo sysroot
201-
uses: actions/cache@v3
201+
uses: actions/cache@v4
202202
with:
203203
path: ~/.xargo
204204
key: ${{ runner.os }}-xargo-sysroot
205205
- name: Cache build artifacts
206-
uses: actions/cache@v3
206+
uses: actions/cache@v4
207207
with:
208208
path: ~/.cache/sccache
209209
key: ${{ runner.os }}-sccache

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
3232
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
3333
- name: Cache build artifacts
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.cache/sccache
3737
key: ${{ runner.os }}-sccache

0 commit comments

Comments
 (0)