From 106b3411312ef808c7d0a11ace684eade83b3ab1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:03:00 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/reusable-base.yml | 4 ++-- .github/workflows/reusable-sync.yml | 4 ++-- .github/workflows/type-check.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/reusable-base.yml b/.github/workflows/reusable-base.yml index 027c440..9d3c060 100644 --- a/.github/workflows/reusable-base.yml +++ b/.github/workflows/reusable-base.yml @@ -85,7 +85,7 @@ jobs: run: echo "prefix=$(( $(date +%s) / 60 / 60 / 24 / 120 ))" >> $GITHUB_OUTPUT - name: Restore cache using package-lock.json hash - uses: actions/cache@v4 + uses: actions/cache@v5 if: ${{ !inputs.no-lockfile }} with: path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }} @@ -94,7 +94,7 @@ jobs: ${{ runner.os }}-node-${{ steps.npm-timed-expiration.outputs.prefix }}- - name: Restore cache using package.json hash - uses: actions/cache@v4 + uses: actions/cache@v5 if: ${{ inputs.no-lockfile }} with: path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }} diff --git a/.github/workflows/reusable-sync.yml b/.github/workflows/reusable-sync.yml index ad7adfd..218450d 100644 --- a/.github/workflows/reusable-sync.yml +++ b/.github/workflows/reusable-sync.yml @@ -126,7 +126,7 @@ jobs: run: echo "prefix=$(( $(date +%s) / 60 / 60 / 24 / 120 ))" >> $GITHUB_OUTPUT - name: Restore cache using package-lock.json hash - uses: actions/cache@v4 + uses: actions/cache@v5 if: (inputs.npm-pre-sync-script || inputs.npm-post-sync-script) && !inputs.no-lockfile with: path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }} @@ -135,7 +135,7 @@ jobs: ${{ runner.os }}-node-${{ steps.npm-timed-expiration.outputs.prefix }}- - name: Restore cache using package.json hash - uses: actions/cache@v4 + uses: actions/cache@v5 if: (inputs.npm-pre-sync-script || inputs.npm-post-sync-script) && inputs.no-lockfile with: path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }} diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml index 5dcc20f..6f029cb 100644 --- a/.github/workflows/type-check.yml +++ b/.github/workflows/type-check.yml @@ -95,7 +95,7 @@ jobs: run: echo "prefix=$(( $(date +%s) / 60 / 60 / 24 / 120 ))" >> $GITHUB_OUTPUT - name: Restore cache using package-lock.json hash - uses: actions/cache@v4 + uses: actions/cache@v5 if: ${{ !inputs.no-lockfile }} with: path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }} @@ -104,7 +104,7 @@ jobs: ${{ runner.os }}-node-${{ steps.npm-timed-expiration.outputs.prefix }}- - name: Restore cache using package.json hash - uses: actions/cache@v4 + uses: actions/cache@v5 if: ${{ inputs.no-lockfile }} with: path: ${{ steps.npm-cache-dir-windows.outputs.dir || steps.npm-cache-dir.outputs.dir }}