From 39b0568ea4896d5b765e4c6e5f3dca29d0140c1c Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Fri, 13 Mar 2026 14:00:33 -0700 Subject: [PATCH] fix(ci): remove deprecated v1 cache API from container build Backport of #26742 to release/1.17. RunsOn v2.12.0 (March 6, 2026) removed v1 cache toolkit support, causing the buildx GHA cache proxy to return 404 for v1 endpoints. This broke the v1.17.0-rc2 container build. Removing the explicit version=1 parameter lets buildkit auto-detect the v2 protocol. Signed-off-by: Ramon Roche --- .github/workflows/dev_container.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev_container.yml b/.github/workflows/dev_container.yml index ee61d80c3c..aac668eca5 100644 --- a/.github/workflows/dev_container.yml +++ b/.github/workflows/dev_container.yml @@ -130,8 +130,8 @@ jobs: load: false push: ${{ startsWith(github.ref, 'refs/tags/') || (github.event_name == 'workflow_dispatch' && github.event.inputs.deploy_to_registry) }} provenance: false - cache-from: type=gha,version=1 - cache-to: type=gha,version=1,mode=max + cache-from: type=gha + cache-to: type=gha,mode=max deploy: name: Deploy To Registry