Skip to content

Commit d75d321

Browse files
authored
Merge pull request #84 from docker/actions-toolkit-0.74.0
update actions-toolkit to 0.74.0
2 parents 4d4e9f3 + 421753e commit d75d321

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/bake.yml

Lines changed: 3 additions & 2 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.73.0"
144+
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.74.0"
145145
COSIGN_VERSION: "v3.0.2"
146146
LOCAL_EXPORT_DIR: "/tmp/buildx-output"
147147
MATRIX_SIZE_LIMIT: "20"
@@ -691,7 +691,8 @@ jobs:
691691
});
692692
693693
const verifyResults = await sigstore.verifySignedManifests(signResults, {
694-
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$`
694+
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$`,
695+
retryOnManifestUnknown: true
695696
});
696697
697698
await core.group(`Verify commands`, async () => {

.github/workflows/build.yml

Lines changed: 3 additions & 2 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.73.0"
151+
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.74.0"
152152
COSIGN_VERSION: "v3.0.2"
153153
LOCAL_EXPORT_DIR: "/tmp/buildx-output"
154154
MATRIX_SIZE_LIMIT: "20"
@@ -593,7 +593,8 @@ jobs:
593593
});
594594
595595
const verifyResults = await sigstore.verifySignedManifests(signResults, {
596-
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$`
596+
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$`,
597+
retryOnManifestUnknown: true
597598
});
598599
599600
await core.group(`Verify commands`, async () => {

.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.73.0"
16+
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.74.0"
1717

1818
jobs:
1919
verify:

0 commit comments

Comments
 (0)