From 9f0b90afcc630484d02dc470721bb19ca617c346 Mon Sep 17 00:00:00 2001 From: Mark Goodwin Date: Thu, 6 Mar 2025 08:23:02 +0000 Subject: [PATCH] ci: fix usage of actions/cache@v2 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 109758e..4ad9146 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,13 +29,13 @@ jobs: with: node-version-file: '.nvmrc' - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: npm-cache with: path: '**/node_modules' key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: '**/build' key: ${{ runner.os }}-build-${{ github.sha }} @@ -58,13 +58,13 @@ jobs: with: node-version-file: '.nvmrc' - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: npm-cache with: path: '**/node_modules' key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: '**/build' key: ${{ runner.os }}-build-${{ github.sha }}