Skip to content

Comments

fix: unset codex-version default; should pick up 0.60.1#58

Merged
bolinfest merged 1 commit intomainfrom
pr58
Nov 19, 2025
Merged

fix: unset codex-version default; should pick up 0.60.1#58
bolinfest merged 1 commit intomainfrom
pr58

Conversation

@bolinfest
Copy link
Collaborator

@bolinfest bolinfest commented Nov 19, 2025

Undo temporary fix from #56 where we pinned the default version of the CLI to 0.58.0. Now the action will go back to picking up the latest version.

I tested this with:

name: Run Codex Exec
on:
  workflow_dispatch:
    inputs:
      prompt:
        description: Prompt to send to Codex
        default: "What OS is this and what is cwd?"
        required: false

jobs:
  codex:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5

      - name: Start Codex proxy
        uses: openai/codex-action@4e66262d88002f5b291881bbd4a4eff2824ab421
        with:
          openai-api-key: ${{ secrets.OPENAI_API_KEY }}

      - name: Run Codex
        uses: openai/codex-action@4e66262d88002f5b291881bbd4a4eff2824ab421
        id: codex
        with:
          prompt: ${{ github.event.inputs.prompt }}
          sandbox: "read-only"
          output-file: "/tmp/result.txt"

      - name: Capture Codex result
        run: |
          echo "New Codex said: ${{ steps.codex.outputs.final-message }}"

      - name: Try output file
        run: cat /tmp/result.txt

For the Run Codex step, it ran with version v0.60.1 of the CLI and used the gpt-5.1-codex model.

@bolinfest bolinfest requested a review from pakrym-oai November 19, 2025 20:48
@bolinfest bolinfest merged commit 0861694 into main Nov 19, 2025
2 checks passed
@github-actions github-actions bot locked and limited conversation to collaborators Nov 19, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants