From 1e3542eca0e0123688885c37448fbd19f8f2dc59 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 01:26:44 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/branch-validations.yaml | 8 ++++---- .github/workflows/deploy-published-releases.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/branch-validations.yaml b/.github/workflows/branch-validations.yaml index cc2bc50d..e555b618 100644 --- a/.github/workflows/branch-validations.yaml +++ b/.github/workflows/branch-validations.yaml @@ -22,7 +22,7 @@ jobs: - name: Cache dependencies id: cache-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-lock.json') }} @@ -44,7 +44,7 @@ jobs: - name: Cache dependencies id: cache-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-lock.json') }} @@ -66,7 +66,7 @@ jobs: - name: Cache dependencies id: cache-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-lock.json') }} @@ -88,7 +88,7 @@ jobs: - name: Cache dependencies id: cache-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/deploy-published-releases.yaml b/.github/workflows/deploy-published-releases.yaml index 5575045a..0af1f13d 100644 --- a/.github/workflows/deploy-published-releases.yaml +++ b/.github/workflows/deploy-published-releases.yaml @@ -23,7 +23,7 @@ jobs: - name: Cache dependencies id: cache-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-lock.json') }}