From 64727da5c417931d546953bae922900e27ec3b80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 18:05:29 +0000 Subject: [PATCH] Upgrade: [dependabot] - 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) - [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/quality-checks.yml | 6 +++--- .github/workflows/tag-release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index 6652142..7124990 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -79,7 +79,7 @@ jobs: asdf_version: ${{ inputs.asdfVersion }} - name: Cache asdf - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: | ~/.asdf @@ -110,7 +110,7 @@ jobs: echo "@nhsdigital:registry=https://npm.pkg.github.com" >> ~/.npmrc - name: Cache npm dependencies - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ./node_modules key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -257,7 +257,7 @@ jobs: - name: Cache npm dependencies if: steps.check_cdk.outputs.cdk_exists == 'true' - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index f9c4c83..402aad7 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -107,7 +107,7 @@ jobs: - name: Cache asdf artifact id: asdf_artifact_cache - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: asdf.tar.gz key: ${{ steps.artifact_cache_key.outputs.key }} @@ -116,7 +116,7 @@ jobs: - name: Cache asdf with installed npm packages if: ${{ steps.asdf_artifact_cache.outputs.cache-hit != 'true' }} id: installed_cache - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ~/.asdf key: ${{ steps.installed_cache_key.outputs.key }} @@ -125,7 +125,7 @@ jobs: - name: Cache asdf if: ${{ steps.installed_cache.outcome == 'success' && steps.installed_cache.outputs.cache-hit != 'true' }} id: asdf_cache - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ~/.asdf key: ${{ steps.asdf_cache_key.outputs.key }} @@ -231,7 +231,7 @@ jobs: - name: Cache asdf if: ${{ inputs.publish_package }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.asdf