@@ -341,7 +341,7 @@ jobs:
341
341
smoke-tests :
342
342
name : Smoke Tests
343
343
runs-on : ubuntu-22.04
344
- needs : setup-matrix
344
+ needs : [checks, setup-matrix]
345
345
strategy :
346
346
fail-fast : false
347
347
matrix : ${{ fromJSON(needs.setup-matrix.outputs.matrix) }}
@@ -359,6 +359,7 @@ jobs:
359
359
nginx-crt : ${{ contains(matrix.images.image, 'nap') && secrets.NGINX_AP_CRT || secrets.NGINX_CRT }}
360
360
nginx-key : ${{ contains(matrix.images.image, 'nap') && secrets.NGINX_AP_KEY || secrets.NGINX_KEY }}
361
361
azure-ad-secret : ${{ secrets.AZURE_AD_AUTOMATION }}
362
+ go-md5 : ${{ needs.checks.outputs.go_code_md5 }}
362
363
363
364
- name : Upload Test Results
364
365
uses : actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
@@ -383,7 +384,7 @@ jobs:
383
384
with :
384
385
platforms : ${{ matrix.platforms }}
385
386
image : ${{ matrix.image }}
386
- go_md5 : ${{ needs.checks.outputs.go_code_md5 }}
387
+ go-md5 : ${{ needs.checks.outputs.go_code_md5 }}
387
388
permissions :
388
389
contents : read
389
390
actions : read
@@ -410,7 +411,7 @@ jobs:
410
411
platforms : ${{ matrix.platforms }}
411
412
image : ${{ matrix.image }}
412
413
target : ${{ matrix.target }}
413
- go_md5 : ${{ needs.checks.outputs.go_code_md5 }}
414
+ go-md5 : ${{ needs.checks.outputs.go_code_md5 }}
414
415
release-url : ${{ needs.release-notes.outputs.release-url }}
415
416
permissions :
416
417
contents : read
@@ -433,7 +434,7 @@ jobs:
433
434
platforms : ${{ matrix.platforms }}
434
435
image : ${{ matrix.image }}
435
436
target : ${{ matrix.target }}
436
- go_md5 : ${{ needs.checks.outputs.go_code_md5 }}
437
+ go-md5 : ${{ needs.checks.outputs.go_code_md5 }}
437
438
nap_modules : ${{ matrix.nap_modules }}
438
439
release-url : ${{ needs.release-notes.outputs.release-url }}
439
440
permissions :
0 commit comments