From 11e4a4c591a27fe60fb3b1a3f4076a568bb2850e Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Fri, 3 Feb 2023 18:32:49 -0800 Subject: [PATCH] update key --- .github/actions/install-deps/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-deps/action.yml b/.github/actions/install-deps/action.yml index d1610f8e7..549d118fc 100644 --- a/.github/actions/install-deps/action.yml +++ b/.github/actions/install-deps/action.yml @@ -16,9 +16,9 @@ runs: path: | node_modules packages/*/node_modules - key: node-modules-${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('yarn.lock', 'patches/*.patch') }} + key: node-modules-v2-${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('yarn.lock', 'patches/*.patch') }} restore-keys: | - node-modules-${{ runner.os }}-${{ steps.node-version.outputs.version }}- + node-modules-v2-${{ runner.os }}-${{ steps.node-version.outputs.version }}- - run: yarn install --frozen-lockfile --network-timeout 9000000 if: steps.node_modules.outputs.cache-hit != 'true'