Skip to content

Commit 64727da

Browse files
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](actions/cache@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] <[email protected]>
1 parent 41dfe9f commit 64727da

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/quality-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
asdf_version: ${{ inputs.asdfVersion }}
8080

8181
- name: Cache asdf
82-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
82+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
8383
with:
8484
path: |
8585
~/.asdf
@@ -110,7 +110,7 @@ jobs:
110110
echo "@nhsdigital:registry=https://npm.pkg.github.com" >> ~/.npmrc
111111
112112
- name: Cache npm dependencies
113-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
113+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
114114
with:
115115
path: ./node_modules
116116
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -257,7 +257,7 @@ jobs:
257257
258258
- name: Cache npm dependencies
259259
if: steps.check_cdk.outputs.cdk_exists == 'true'
260-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
260+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
261261
with:
262262
path: ~/.npm
263263
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/tag-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
108108
- name: Cache asdf artifact
109109
id: asdf_artifact_cache
110-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
110+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
111111
with:
112112
path: asdf.tar.gz
113113
key: ${{ steps.artifact_cache_key.outputs.key }}
@@ -116,7 +116,7 @@ jobs:
116116
- name: Cache asdf with installed npm packages
117117
if: ${{ steps.asdf_artifact_cache.outputs.cache-hit != 'true' }}
118118
id: installed_cache
119-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
119+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
120120
with:
121121
path: ~/.asdf
122122
key: ${{ steps.installed_cache_key.outputs.key }}
@@ -125,7 +125,7 @@ jobs:
125125
- name: Cache asdf
126126
if: ${{ steps.installed_cache.outcome == 'success' && steps.installed_cache.outputs.cache-hit != 'true' }}
127127
id: asdf_cache
128-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
128+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
129129
with:
130130
path: ~/.asdf
131131
key: ${{ steps.asdf_cache_key.outputs.key }}
@@ -231,7 +231,7 @@ jobs:
231231

232232
- name: Cache asdf
233233
if: ${{ inputs.publish_package }}
234-
uses: actions/cache@v4
234+
uses: actions/cache@v5
235235
with:
236236
path: |
237237
~/.asdf

0 commit comments

Comments
 (0)