From 906e6787ae57d426b65e9fe78e043f570aab6d4f Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Tue, 24 Jan 2023 08:02:21 -0600 Subject: [PATCH] build: disable provenance on image build (#1922) --- .github/workflows/build-multiarch.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-multiarch.yml b/.github/workflows/build-multiarch.yml index 01b2293d..e09df448 100644 --- a/.github/workflows/build-multiarch.yml +++ b/.github/workflows/build-multiarch.yml @@ -178,6 +178,9 @@ jobs: # ensure latest base image is used pull: true labels: ${{ steps.meta.outputs.labels }} + # Since some consumers, like Watchtower are broken https://github.com/containrrr/watchtower/discussions/1529 + # Also refer to https://github.com/docker/build-push-action/releases/tag/v3.3.0 + provenance: false build-args: | BASE_IMAGE=${{ matrix.baseImage }} BUILD_FILES_REV=${{ steps.build-files-rev.outputs.REV }}