From 6cb2f02ef8b73aaaa8f01e6aad04f333ce6e2a9a Mon Sep 17 00:00:00 2001 From: Curtis 'Fjord' Hawthorne Date: Tue, 24 Feb 2026 22:19:46 -0800 Subject: [PATCH] feat: update Docker image digest to reflect #12205 (#12372) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a clone of #12371 for easier rebasing/testing. #### [git stack](https://github.com/magus/git-stack-cli) - ✅ `1` https://github.com/openai/codex/pull/12407 - 👉 `2` https://github.com/openai/codex/pull/12372 - ⏳ `3` https://github.com/openai/codex/pull/12185 - ⏳ `4` https://github.com/openai/codex/pull/10673 Co-authored-by: Michael Bolin --- rbe.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rbe.bzl b/rbe.bzl index c1074c2be..5d1381277 100644 --- a/rbe.bzl +++ b/rbe.bzl @@ -3,11 +3,11 @@ def _rbe_platform_repo_impl(rctx): if arch in ["x86_64", "amd64"]: cpu = "x86_64" exec_arch = "amd64" - image_sha = "8c9ff94187ea7c08a31e9a81f5fe8046ea3972a6768983c955c4079fa30567fb" + image_sha = "0a8e56bfaa3b2e5279db0d3bb2d62b44ba5e5d63a37d97eb8790f49da570af70" elif arch in ["aarch64", "arm64"]: cpu = "aarch64" exec_arch = "arm64" - image_sha = "ad9506086215fccfc66ed8d2be87847324be56790ae6a1964c241c28b77ef141" + image_sha = "136487cc4b7cf6f1021816ca18ed00896daed98404ea91dc4d6dd9e9d1cf9564" else: fail("Unsupported host arch for rbe platform: {}".format(arch))