From e9165b9f40beccb244464e2c41253ed78b7a5760 Mon Sep 17 00:00:00 2001 From: Ruslan Nigmatullin Date: Thu, 23 Apr 2026 11:20:58 -0700 Subject: [PATCH] ci: add macOS keychain entitlements (#19167) ## Summary - add macOS application and team identifiers to the release signing entitlements - add a Codex keychain access group for release-signed macOS binaries - keep the existing JIT entitlement unchanged ## Why Codex release binaries are signed with the OpenAI Developer ID team, but the current entitlements plist only grants JIT. macOS Keychain and Secure Enclave operations that create persistent keys can require the process to carry an application identifier and keychain access group. Adding these entitlements gives release-signed binaries a stable Keychain namespace for Codex-owned device keys. ## Validation - `plutil -lint .github/actions/macos-code-sign/codex.entitlements.plist` --- .github/actions/macos-code-sign/codex.entitlements.plist | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/actions/macos-code-sign/codex.entitlements.plist b/.github/actions/macos-code-sign/codex.entitlements.plist index d35e43ae5..218fe2953 100644 --- a/.github/actions/macos-code-sign/codex.entitlements.plist +++ b/.github/actions/macos-code-sign/codex.entitlements.plist @@ -2,7 +2,15 @@ + com.apple.application-identifier + 2DC432GLL2.com.openai.codex + com.apple.developer.team-identifier + 2DC432GLL2 com.apple.security.cs.allow-jit + keychain-access-groups + + 2DC432GLL2.com.openai.codex +