Skip to content

Commit 0b2f414

Browse files
committed
chore(ci): upgrade actions/cache to 3
Addresses the "`set-output` command is deprecated" warnings.
1 parent 3ff0c7b commit 0b2f414

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ jobs:
283283
sudo apt-get install libusb-1.0-0-dev libudev-dev ninja-build
284284
285285
- name: Cache QEMU's built binaries
286-
uses: actions/cache@v2
286+
uses: actions/cache@v3
287287
with:
288288
path: ~/.qemu
289289
key: ${{ runner.os }}-ci-qemu-arm_riscv
@@ -307,7 +307,7 @@ jobs:
307307
rustup target add riscv64imac-unknown-none-elf riscv64gc-unknown-none-elf
308308
309309
- name: Cache test runner's binary
310-
uses: actions/cache@v2
310+
uses: actions/cache@v3
311311
with:
312312
path: ./target/debug
313313
key: ${{ runner.os }}-ci-runner-${{ hashFiles('rust-toolchain', 'src/r3_test_runner/**', 'src/r3_test_suite/**') }}
@@ -362,7 +362,7 @@ jobs:
362362
rustup target add riscv64imac-unknown-none-elf riscv64gc-unknown-none-elf
363363
364364
- name: Cache test runner's binary
365-
uses: actions/cache@v2
365+
uses: actions/cache@v3
366366
with:
367367
path: ./target/debug
368368
key: ${{ runner.os }}-ci-runner-${{ hashFiles('rust-toolchain', 'src/r3_test_runner/**', 'src/r3_test_suite/**') }}

.github/workflows/report-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
.github/scripts/install-deno.sh
5050
5151
- name: Cache test runner's binary
52-
uses: actions/cache@v2
52+
uses: actions/cache@v3
5353
with:
5454
path: ./target/debug
5555
key: ${{ runner.os }}-ci-runner-${{ hashFiles('rust-toolchain', 'src/r3_test_runner/**', 'src/r3_test_suite/**') }}

0 commit comments

Comments
 (0)