From 843e8b3f3ac246172ded8ef84680223fb451bd9d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 05:54:18 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4.1.2 --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09567f5..69fcf46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: - id: npm-cache run: echo "dir=$(npm config get cache)" | tee -a "$GITHUB_OUTPUT" - id: npm-cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 with: path: ${{ steps.npm-cache.outputs.dir }} key: npm-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5918fc4..a0d5c9d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: - id: npm-cache run: echo "dir=$(npm config get cache)" | tee -a "$GITHUB_OUTPUT" - id: npm-cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 with: path: ${{ steps.npm-cache.outputs.dir }} key: npm-${{ hashFiles('package-lock.json') }} @@ -38,7 +38,7 @@ jobs: npm- - run: npm ci - run: npm test - - uses: actions/cache/save@v4 + - uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 if: github.ref_name == 'main' with: path: ${{ steps.npm-cache.outputs.dir }}