From f3bde217594e8be956a6583fde237f89fe2dd7c0 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Sat, 17 May 2025 11:25:24 -0700 Subject: [PATCH] chore: update install_native_deps.sh to use rust-v0.0.2505171051 (#995) Use a more recent built of the Rust binaries to include with the Node module. --- 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 07dd73bc..00f355ca 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/14950726936" +WORKFLOW_URL="https://github.com/openai/codex/actions/runs/15087655786" WORKFLOW_ID="${WORKFLOW_URL##*/}" ARTIFACTS_DIR="$(mktemp -d)"