Skip to content

Commit 4d4e9f3

Browse files
authored
Merge pull request #83 from docker/update-actions-toolkit
update actions-toolkit to 0.73.0
2 parents 7643588 + 656b7b3 commit 4d4e9f3

File tree

3 files changed

+15
-19
lines changed

3 files changed

+15
-19
lines changed

.github/workflows/bake.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ env:
141141
BUILDKIT_IMAGE: "moby/buildkit:master@sha256:bdefeba47634c596286beabe68219708ed364c4f1a5e4e9a2e160274712a0e89" # TODO: pin to a specific version when signed gha cache feature is available
142142
SBOM_IMAGE: "docker/buildkit-syft-scanner:1.9.0"
143143
BINFMT_IMAGE: "tonistiigi/binfmt:qemu-v10.0.4-56"
144-
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.72.0"
144+
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.73.0"
145145
COSIGN_VERSION: "v3.0.2"
146146
LOCAL_EXPORT_DIR: "/tmp/buildx-output"
147147
MATRIX_SIZE_LIMIT: "20"
@@ -690,10 +690,9 @@ jobs:
690690
imageDigest: inpImageDigest
691691
});
692692
693-
const verifyResults = await sigstore.verifySignedManifests(
694-
{ certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$` },
695-
signResults
696-
);
693+
const verifyResults = await sigstore.verifySignedManifests(signResults, {
694+
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$`
695+
});
697696
698697
await core.group(`Verify commands`, async () => {
699698
const verifyCommands = [];
@@ -722,10 +721,9 @@ jobs:
722721
localExportDir: inplocalExportDir
723722
});
724723
725-
const verifyResults = await sigstore.verifySignedArtifacts(
726-
{ certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$` },
727-
signResults
728-
);
724+
const verifyResults = await sigstore.verifySignedArtifacts(signResults, {
725+
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$`
726+
});
729727
730728
await core.group(`Verify commands`, async () => {
731729
const verifyCommands = [];

.github/workflows/build.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ env:
148148
BUILDKIT_IMAGE: "moby/buildkit:master@sha256:bdefeba47634c596286beabe68219708ed364c4f1a5e4e9a2e160274712a0e89" # TODO: pin to a specific version when signed gha cache feature is available
149149
SBOM_IMAGE: "docker/buildkit-syft-scanner:1.9.0"
150150
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"
152152
COSIGN_VERSION: "v3.0.2"
153153
LOCAL_EXPORT_DIR: "/tmp/buildx-output"
154154
MATRIX_SIZE_LIMIT: "20"
@@ -592,10 +592,9 @@ jobs:
592592
imageDigest: inpImageDigest
593593
});
594594
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+
});
599598
600599
await core.group(`Verify commands`, async () => {
601600
const verifyCommands = [];
@@ -624,10 +623,9 @@ jobs:
624623
localExportDir: inplocalExportDir
625624
});
626625
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+
});
631629
632630
await core.group(`Verify commands`, async () => {
633631
const verifyCommands = [];

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
required: false
1414

1515
env:
16-
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.72.0"
16+
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.73.0"
1717

1818
jobs:
1919
verify:

0 commit comments

Comments
 (0)