|
148 | 148 | BUILDKIT_IMAGE: "moby/buildkit:master@sha256:bdefeba47634c596286beabe68219708ed364c4f1a5e4e9a2e160274712a0e89" # TODO: pin to a specific version when signed gha cache feature is available |
149 | 149 | SBOM_IMAGE: "docker/buildkit-syft-scanner:1.9.0" |
150 | 150 | BINFMT_IMAGE: "tonistiigi/binfmt:qemu-v10.0.4-56" |
151 | | - DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.72.0" |
| 151 | + DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.73.0" |
152 | 152 | COSIGN_VERSION: "v3.0.2" |
153 | 153 | LOCAL_EXPORT_DIR: "/tmp/buildx-output" |
154 | 154 | MATRIX_SIZE_LIMIT: "20" |
@@ -592,10 +592,9 @@ jobs: |
592 | 592 | imageDigest: inpImageDigest |
593 | 593 | }); |
594 | 594 | |
595 | | - const verifyResults = await sigstore.verifySignedManifests( |
596 | | - { certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$` }, |
597 | | - signResults |
598 | | - ); |
| 595 | + const verifyResults = await sigstore.verifySignedManifests(signResults, { |
| 596 | + certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$` |
| 597 | + }); |
599 | 598 | |
600 | 599 | await core.group(`Verify commands`, async () => { |
601 | 600 | const verifyCommands = []; |
@@ -624,10 +623,9 @@ jobs: |
624 | 623 | localExportDir: inplocalExportDir |
625 | 624 | }); |
626 | 625 | |
627 | | - const verifyResults = await sigstore.verifySignedArtifacts( |
628 | | - { certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$` }, |
629 | | - signResults |
630 | | - ); |
| 626 | + const verifyResults = await sigstore.verifySignedArtifacts(signResults, { |
| 627 | + certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$` |
| 628 | + }); |
631 | 629 | |
632 | 630 | await core.group(`Verify commands`, async () => { |
633 | 631 | const verifyCommands = []; |
|
0 commit comments