diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6cb988c..b029212 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: # Cache node_modules to speed up the process - name: "Restore node_modules cache" id: cache-npm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: npm-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a7f8d16..25bbb76 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -28,7 +28,7 @@ jobs: # Cache node_modules to speed up the process - name: "Restore node_modules cache" id: cache-npm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: npm-${{ hashFiles('**/package-lock.json') }}