From a80240cfdc345a33508333e16560759b2a4abf6d Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Thu, 5 Jun 2025 23:14:10 -0700 Subject: [PATCH] chore: ensure next Node.js release includes musl binaries for arm64 Linux (#1232) Target a workflow with more recent binary artifacts. --- codex-cli/scripts/install_native_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-cli/scripts/install_native_deps.sh b/codex-cli/scripts/install_native_deps.sh index f9172dde..01253d5d 100755 --- a/codex-cli/scripts/install_native_deps.sh +++ b/codex-cli/scripts/install_native_deps.sh @@ -65,7 +65,7 @@ mkdir -p "$BIN_DIR" # Until we start publishing stable GitHub releases, we have to grab the binaries # from the GitHub Action that created them. Update the URL below to point to the # appropriate workflow run: -WORKFLOW_URL="https://github.com/openai/codex/actions/runs/15483216943" +WORKFLOW_URL="https://github.com/openai/codex/actions/runs/15483730027" WORKFLOW_ID="${WORKFLOW_URL##*/}" ARTIFACTS_DIR="$(mktemp -d)"