From 097c1d7163635721748b02d0083e41535380706a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 17:01:27 +0000 Subject: [PATCH] Update actions/cache action to v5 --- .github/workflows/build-and-publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yaml b/.github/workflows/build-and-publish.yaml index 637efe3..eb368a7 100644 --- a/.github/workflows/build-and-publish.yaml +++ b/.github/workflows/build-and-publish.yaml @@ -34,14 +34,14 @@ jobs: with: node-version: 'latest' - name: Cache npm dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}