From 3dd401ead3f4b402c1851b0b39737111205bf9a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Wiedemann?= Date: Sun, 23 Jul 2023 22:46:46 +0000 Subject: [PATCH] chore: fix cache name --- .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 a18b1a4..316597d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,9 +21,9 @@ jobs: uses: actions/cache@v3 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS - key: ${{ runner.OS }}-node-12.x-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/yarn.lock') }} restore-keys: | - ${{ runner.OS }}-node-12.x + ${{ runner.OS }}-node-16.x ${{ runner.OS }}- - name: Install dependencies run: yarn install --frozen-lockfile