From b835b19f75b205b0ef98d2bbf88b06af6e102ca7 Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Mon, 6 Jan 2025 17:58:37 -0800 Subject: [PATCH] Update docker/bake action (#182) The collect-artifacts job in the actions/download-artifact step is failing if we don't disable the bake action's artifact uploading. It may due to the use of non-standard characters in the file name; for example `jpy-consortium~jpy~CN2MCZ+7.dockerbuild`, which seems to cause an error "Unable to download artifact(s): Unable to download and extract artifact: Artifact download failed after 5 retries" --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7404245..9da922a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -148,7 +148,9 @@ jobs: - run: mkdir /tmp/dist - name: Bake - uses: docker/bake-action@v4.6.0 + uses: docker/bake-action@v5.11.0 + env: + DOCKER_BUILD_RECORD_UPLOAD: false with: files: .github/docker/docker-bake.hcl pull: true