From a10ceb28daa7074fc3239b829d3d1449fc5aa32d Mon Sep 17 00:00:00 2001 From: Ryan Drew Date: Thu, 11 Jul 2024 14:59:46 -0600 Subject: [PATCH] build-images-release: Specify pattern when downloading image digests This commit introduces a fix for the "Display Digests" job of the image build workflow. The job fails when trying to download image digest artifacts, which is caused by a recent change made to the docker/build-push-action that adjusted the way artifacts were stored. The fix is based off of https://github.com/cilium/cilium/pull/33216, more details can be found there. Signed-off-by: Ryan Drew --- .github/workflows/build-images-release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-images-release.yaml b/.github/workflows/build-images-release.yaml index 94c859337..be648033c 100644 --- a/.github/workflows/build-images-release.yaml +++ b/.github/workflows/build-images-release.yaml @@ -117,6 +117,7 @@ jobs: - name: Download digests of all images built uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 with: + pattern: "*image-digest *" path: image-digest/ - name: Image Digests Output