From fbdf96589360b80ef90b713c252da7c7272e8777 Mon Sep 17 00:00:00 2001 From: Robert Masen Date: Thu, 24 Nov 2022 12:06:51 -0600 Subject: [PATCH] chore: update cache action to v3 --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4b267a0..e805593 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -37,14 +37,14 @@ jobs: - name: Check syntax run: cargo fmt --all -- --check - name: Cache node_modules - uses: actions/cache@v1.0.3 + uses: actions/cache@v3 with: path: ./node_modules key: ${{ runner.os }}.node_modules - name: before cargo cache run: rm -rf ~/.cargo/registry - name: Cache cargo directory - uses: actions/cache@v1.0.3 + uses: actions/cache@v3 with: key: ${{ runner.os }}.cargo path: ~/.cargo