From a884647a7c15c835a4958a9b93746f5a3d11ba47 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 26 Jan 2023 09:15:37 -0800 Subject: [PATCH] Changes to use buildx imagetools to extract the manifest, supporting new attestation manifests --- .github/scripts/cleanup-tags.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/scripts/cleanup-tags.py b/.github/scripts/cleanup-tags.py index 9b299d048..9312d05c5 100644 --- a/.github/scripts/cleanup-tags.py +++ b/.github/scripts/cleanup-tags.py @@ -155,8 +155,10 @@ class RegistryTagsCleaner: proc = subprocess.run( [ shutil.which("docker"), - "manifest", + "buildx", + "imagetools", "inspect", + "--raw", full_name, ], capture_output=True,