Skip to content

Commit 3dc95e1

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/multi-8b7dde7c12
2 parents 9058227 + 3809401 commit 3dc95e1

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/quality-checks.yml

Lines changed: 5 additions & 5 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') }}
@@ -362,7 +362,7 @@ jobs:
362362
done
363363
364364
- name: Download terraform plans
365-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
365+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
366366
with:
367367
pattern: "*_terraform_plan"
368368
path: terraform_plans/
@@ -403,7 +403,7 @@ jobs:
403403

404404
- name: Upload cfn_guard_output
405405
if: failure()
406-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
406+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
407407
with:
408408
name: cfn_guard_output
409409
path: cfn_guard_output

.github/workflows/tag-release.yml

Lines changed: 9 additions & 9 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 }}
@@ -153,7 +153,7 @@ jobs:
153153
tar -czf asdf.tar.gz -C "$HOME" .asdf
154154
155155
- name: Upload asdf artifact
156-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
156+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
157157
with:
158158
name: asdf_artifact
159159
path: asdf.tar.gz
@@ -166,7 +166,7 @@ jobs:
166166
cp releaseNotesTemplates/commit.hbs config_artifact/releaseNotesTemplates/
167167
168168
- name: Upload config artifact
169-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
169+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
170170
with:
171171
name: config_artifact
172172
path: config_artifact/
@@ -181,7 +181,7 @@ jobs:
181181
next_version_tag: ${{ steps.output_version_tag.outputs.NEXT_VERSION_TAG }}
182182
steps:
183183
- name: Fetch asdf artifact
184-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
184+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
185185
with:
186186
name: asdf_artifact
187187
- name: Install asdf
@@ -225,13 +225,13 @@ jobs:
225225
BRANCH_NAME: ${{ inputs.branch_name }}
226226

227227
- name: Fetch semantic-release config
228-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
228+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
229229
with:
230230
name: config_artifact
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
@@ -255,7 +255,7 @@ jobs:
255255
256256
- name: Download extra artifact
257257
if: ${{ inputs.extra_artifact_name != '' }}
258-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
258+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
259259
with:
260260
artifact-ids: ${{ inputs.extra_artifact_id }}
261261
github-token: ${{ secrets.GITHUB_TOKEN }}

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repository = "https://github.com/NHSDigital/eps-common-workflows"
1717

1818
[tool.poetry.dependencies]
1919
python = "^3.14"
20-
pre-commit = "^4.5.0"
20+
pre-commit = "^4.5.1"
2121

2222
[tool.poetry.group.dev.dependencies]
2323
pip-licenses = "^5.0.0"

0 commit comments

Comments
 (0)