From 2b1515ae6b8a2dbe9cc87e46a492230cc753ba18 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 3 Aug 2022 23:09:17 -0700 Subject: [PATCH] ci: fix the cache keys [skip ci] --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 881cc82b..41944788 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,9 +39,9 @@ jobs: path: | ~/.pnpm-store D:\.pnpm-store - key: "setupcpp-cache-OS:${{ matrix.os }}-node:${{ matrix.node }}-pnpm:${{ matrix.pnpm }}-${{ hashFiles('./.npmrc') }}-deps:${{ hashFiles('./package.json') }}-${{ matrix.cache_reset_counter }}" + key: "setupcpp-cache-OS:${{ matrix.os }}-node:${{ matrix.node }}-pnpm:${{ matrix.pnpm }}-${{ hashFiles('./.npmrc') }}-deps:${{ hashFiles('./package.json') }}" restore-keys: | - "setupcpp-cache-OS:${{ matrix.os }}" + "setupcpp-cache-OS:${{ matrix.os }}-" - name: Setup Node uses: actions/setup-node@v2