From 02d1bc73a78e487108312c5ea0c57145db55dffe Mon Sep 17 00:00:00 2001 From: Peter Yates Date: Fri, 20 Jan 2023 15:14:48 +0000 Subject: [PATCH] Set provenance to false on docker/build-push-action Builds were failing with the error: > OCI index found, but Accept header does not support OCI indexes The suggested fix is to temporarily disable provenance until better support for OCI indexes arrives. https://github.com/docker/buildx/issues/1533 --- .github/workflows/deploy_to_dev.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy_to_dev.yml b/.github/workflows/deploy_to_dev.yml index 1f2aaa9b184..64b63f00b2f 100644 --- a/.github/workflows/deploy_to_dev.yml +++ b/.github/workflows/deploy_to_dev.yml @@ -46,6 +46,7 @@ jobs: push: true tags: dfedigital/early-careers-framework-dev:builder target: builder + provenance: false - name: Build and push docker image from early-careers-framework-gems-node-modules target uses: docker/build-push-action@v2