Skip to content

chore(ci): bump openai/codex-action from 1.11 to 1.12 - #6541

Closed
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/github_actions/openai/codex-action-1.12
Closed

chore(ci): bump openai/codex-action from 1.11 to 1.12#6541
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/github_actions/openai/codex-action-1.12

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 9, 2026

Copy link
Copy Markdown
Contributor

Bumps openai/codex-action from 1.11 to 1.12.

Changelog

Sourced from openai/codex-action's changelog.

codex-action Changelog

v1.12 (2026-08-20)

  • Strengthen Linux runner privilege isolation and Responses API proxy credential handling.
  • Reject Codex arguments and configuration overrides that conflict with protected execution settings.
  • Require unprivileged user namespaces for Linux drop-sudo; run the action after steps that need sudo, Docker, or privileged service sockets.
  • Document runner requirements, permission-profile behavior, and trusted configuration boundaries.

v1.11 (2026-07-04)

  • #116 keep the permission profile helper backward compatible

v1.10 (2026-07-02)

  • #113 add Codex permission profile support

v1.9 (2026-06-22)

  • #85 update the internal setup-node pin to v6.3.0

v1.8 (2026-04-29)

  • #91 tighten what bots are allowed

v1.7 (2026-04-24)

  • #89 restrict bot permission bypass

v1.6 (2026-03-16)

  • #77 enable GitHub-hosted Linux bubblewrap support

v1.5 (2026-03-16)

  • #74 harden shell interpolation in action workflows

v1.4 (2025-11-19)

  • #58 revert #56 and use the latest stable version of Codex CLI again

v1.3 (2025-11-19)

  • #56 temporarily set the default version of Codex CLI to 0.58.0

v1.2 (2025-11-07)

  • #52 add baseUrl to Octokit constructor, if appropriate, for GHE

v1.1 (2025-11-05)

... (truncated)

Commits
  • 8636508 fix: improve runner setup and configuration handling
  • c385816 Retry network errors/transient HTTP errors in GitHub API requests (#128)
  • dd78cb6 docs: update CHANGELOG for v1.11 (#117)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [openai/codex-action](https://github.com/openai/codex-action) from 1.11 to 1.12.
- [Changelog](https://github.com/openai/codex-action/blob/main/CHANGELOG.md)
- [Commits](openai/codex-action@52fe01e...8636508)

---
updated-dependencies:
- dependency-name: openai/codex-action
  dependency-version: '1.12'
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Sep 9, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 9, 2026 09:31
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Sep 9, 2026
# released fix above v1.12 as of 2026-09-09; re-verify both issues
# are closed before ever re-bumping this pin.
uses: &codex-action-pin openai/codex-action@52fe01ec70a42f454c9d2ebd47598f9fd6893d56 # v1.11
uses: &codex-action-pin openai/codex-action@86365089eb2b84e0a8fb0717b304f8bdcb13b20e # v1.11

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Severity: LOW

The added SHA is the v1.12 release, not v1.11 as the inline annotation and surrounding security rationale state. This silently changes the privileged action wrapper used with untrusted PR content and OPENAI_API_KEY; the v1.11 isolation audit no longer applies, leaving a plausible path for a wrapper regression to expose the key.
Helpful? Add 👍 / 👎

💡 Fix Suggestion

Suggestion: Revert the SHA on line 347 back to the v1.11 SHA (52fe01ec70a42f454c9d2ebd47598f9fd6893d56). The PR accidentally bumped the pin to v1.12 (86365089eb2b84e0a8fb0717b304f8bdcb13b20e), which the surrounding comments (lines 330–346) explicitly forbid due to two confirmed upstream regressions (openai/codex-action#151 and #160) that hang or kill the job under this workflow's exact configuration. The dependabot.yml ignore entry for openai/codex-action exists precisely to prevent this bump, but it was overridden here.

⚠️ Experimental Feature: This code suggestion is automatically generated. Please review carefully.

Suggested change
uses: &codex-action-pin openai/codex-action@86365089eb2b84e0a8fb0717b304f8bdcb13b20e # v1.11
uses: &codex-action-pin openai/codex-action@52fe01ec70a42f454c9d2ebd47598f9fd6893d56 # v1.11

@Coly010
Coly010 disabled auto-merge September 9, 2026 10:01
@Coly010 Coly010 closed this Sep 9, 2026
@dependabot @github

dependabot Bot commented on behalf of github Sep 9, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/github_actions/openai/codex-action-1.12 branch September 9, 2026 10:01
pull Bot pushed a commit to chizee/cli that referenced this pull request Sep 9, 2026
…ase#6542)

## What kind of change does this PR introduce?

CI reliability fix (follow-up to supabase#6538).

## What is the current behavior?

supabase#6538 re-pinned `openai/codex-action` to v1.11 and added a Dependabot
ignore entry scoped to `versions: ["1.12.x"]`, intending to still let
Dependabot propose v1.13+ once the upstream hang bugs
(openai/codex-action#151, supabase#160) are fixed, while blocking the known-bad
v1.12 line specifically.

That scoping never actually worked. 9 minutes after supabase#6538 merged,
Dependabot opened supabase#6541 proposing the exact v1.12 bump we were trying to
block — config propagation wasn't the issue; the `versions` syntax was.
The `github-actions` ecosystem's `ignore.versions` strings are parsed as
Ruby `Gem::Requirement` (RubyGems comparator syntax: `>= x`, `~> x`,
etc.), not npm-style semver ranges. `"1.12.x"` isn't a wildcard in that
grammar — it parses as a literal version string with an implicit `=`
operator, which never equals the real dependency version (`"1.12"`), so
the ignore condition silently never matched anything.

Verified directly against the actual parsing logic dependabot-core uses
(`Dependabot::GithubActions::Requirement`, a thin wrapper around
`Gem::Requirement`):
```
GithubActionsRequirement.new("1.12.x").satisfied_by?(Gem::Version.new("1.12"))   # => false (bug)
GithubActionsRequirement.new(">= 1.12, < 1.13").satisfied_by?(Gem::Version.new("1.12"))    # => true
GithubActionsRequirement.new(">= 1.12, < 1.13").satisfied_by?(Gem::Version.new("1.12.5"))  # => true
GithubActionsRequirement.new(">= 1.12, < 1.13").satisfied_by?(Gem::Version.new("1.11"))    # => false
GithubActionsRequirement.new(">= 1.12, < 1.13").satisfied_by?(Gem::Version.new("1.13"))    # => false
```

## What is the new behavior?

Replace `versions: ["1.12.x"]` with `versions: [">= 1.12, < 1.13"]` — a
real Gem::Requirement comparator range, confirmed to correctly match the
1.12 line (including any 1.12.x patch) while excluding v1.11 and v1.13+.
supabase#6541 should be closed as superseded once this merges.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant