From 3aa05fcc53d965a9eda708600c61df737059224b Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Sun, 11 Aug 2024 15:58:49 +0900 Subject: [PATCH] :construction_worker: fix cache ignore setting https://github.com/actions/toolkit/issues/713#issuecomment-1030643364 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d608e2c..3945c81b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: uses: actions/cache/restore@v4 with: path: | - target + target/* !target/tmp key: "${{ matrix.os }}-${{ steps.install_rust.outputs.version }}-${{ hashFiles('**/Cargo.lock') }}" restore-keys: "${{ matrix.os }}-${{ steps.install_rust.outputs.version }}" @@ -57,6 +57,6 @@ jobs: uses: actions/cache/save@v4 with: path: | - target + target/* !target/tmp key: "${{ steps.restore-rust-build-cache.outputs.cache-primary-key }}"