@@ -52,22 +52,22 @@ jobs:
5252 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
5353
5454 - name : make install
55- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
55+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
5656 with :
5757 workspace_folder : ${{ github.workspace }}
5858 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
5959 run : |
6060 make install
6161
6262 - name : Run secrets scan
63- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
63+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
6464 with :
6565 workspace_folder : ${{ github.workspace }}
6666 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
6767 run : |
6868 make secrets-scan
6969 - name : Run actionlint
70- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
70+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
7171 with :
7272 workspace_folder : ${{ github.workspace }}
7373 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -122,7 +122,7 @@ jobs:
122122 echo "uses_go=false" >> "$GITHUB_OUTPUT"
123123 fi
124124 - name : Check licenses
125- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
125+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
126126 with :
127127 workspace_folder : ${{ github.workspace }}
128128 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -136,30 +136,30 @@ jobs:
136136 cat .trivy_out/license_scan.txt
137137 fi
138138 - name : Run code lint
139- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
139+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
140140 with :
141141 workspace_folder : ${{ github.workspace }}
142142 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
143143 run : |
144144 make lint
145145
146146 - name : Run ShellCheck
147- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
147+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
148148 with :
149149 workspace_folder : ${{ github.workspace }}
150150 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
151151 run : |
152152 make shellcheck
153153
154154 - name : Run unit tests
155- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
155+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
156156 with :
157157 workspace_folder : ${{ github.workspace }}
158158 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
159159 run : |
160160 make test
161161 - name : make generate sbom
162- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
162+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
163163 with :
164164 workspace_folder : ${{ github.workspace }}
165165 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -173,7 +173,7 @@ jobs:
173173
174174 - name : Check python vulnerabilities
175175 if : ${{ steps.check_languages.outputs.uses_poetry == 'true' }}
176- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
176+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
177177 with :
178178 workspace_folder : ${{ github.workspace }}
179179 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -182,23 +182,23 @@ jobs:
182182
183183 - name : Check node vulnerabilities
184184 if : ${{ steps.check_languages.outputs.uses_node == 'true' }}
185- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
185+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
186186 with :
187187 workspace_folder : ${{ github.workspace }}
188188 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
189189 run : |
190190 make trivy-scan-node
191191 - name : Check go vulnerabilities
192192 if : ${{ steps.check_languages.outputs.uses_go == 'true' }}
193- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
193+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
194194 with :
195195 workspace_folder : ${{ github.workspace }}
196196 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
197197 run : |
198198 make trivy-scan-go
199199 - name : Check java vulnerabilities
200200 if : ${{ steps.check_languages.outputs.uses_java == 'true' }}
201- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
201+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
202202 with :
203203 workspace_folder : ${{ github.workspace }}
204204 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -338,7 +338,7 @@ jobs:
338338 ${{ runner.os }}-node-
339339
340340 - name : make install
341- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
341+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
342342 with :
343343 workspace_folder : ${{ github.workspace }}
344344 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -347,15 +347,15 @@ jobs:
347347
348348 - name : Build docker images
349349 if : ${{ inputs.run_docker_scan == true }}
350- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
350+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
351351 with :
352352 workspace_folder : ${{ github.workspace }}
353353 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
354354 run : |
355355 make docker-build
356356
357357 - name : Check docker vulnerabilities
358- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
358+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
359359 with :
360360 workspace_folder : ${{ github.workspace }}
361361 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -424,7 +424,7 @@ jobs:
424424
425425 - name : Run cfn-lint
426426 if : steps.check_sam_templates.outputs.sam_exists == 'true' || steps.check_cf_templates.outputs.cf_exists == 'true'
427- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
427+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
428428 with :
429429 workspace_folder : ${{ github.workspace }}
430430 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -436,7 +436,7 @@ jobs:
436436
437437 - name : make install NodeJS
438438 if : steps.check_cdk.outputs.cdk_exists == 'true'
439- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
439+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
440440 with :
441441 workspace_folder : ${{ github.workspace }}
442442 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -445,15 +445,15 @@ jobs:
445445
446446 - name : Run cdk-synth
447447 if : steps.check_cdk.outputs.cdk_exists == 'true'
448- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
448+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
449449 with :
450450 workspace_folder : ${{ github.workspace }}
451451 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
452452 run : |
453453 make cdk-synth
454454
455455 - name : Run cfn-guard script for sam templates
456- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
456+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
457457 with :
458458 workspace_folder : ${{ github.workspace }}
459459 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -462,15 +462,15 @@ jobs:
462462
463463 - name : Run cfn-guard script for cloudformation templates
464464 if : steps.check_cf_templates.outputs.cf_exists == 'true'
465- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
465+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
466466 with :
467467 workspace_folder : ${{ github.workspace }}
468468 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
469469 run : |
470470 make cfn-guard-cloudformation
471471 - name : Run cfn-guard script for cdk templates
472472 if : steps.check_cdk.outputs.cdk_exists == 'true'
473- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
473+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
474474 with :
475475 workspace_folder : ${{ github.workspace }}
476476 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
@@ -498,7 +498,7 @@ jobs:
498498
499499 - name : Run cfn-guard script for terraform plans
500500 if : steps.check_terraform_plans.outputs.terraform_plans_exist == 'true'
501- uses : anthony-nhs/docker-run-action-fork@ae1b9fe9351e334cbb984d20945490f808d23160
501+ uses : anthony-nhs/docker-run-action-fork@e0808a33fe9811938aa5982643b7aa415bf89999
502502 with :
503503 workspace_folder : ${{ github.workspace }}
504504 image : ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
0 commit comments