Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Authenticate via device auth and store the resulting `auth.json` as a secret. Th
1. Pull the codex-docker image:

```bash
docker pull ghcr.io/icoretech/codex-docker:0.115.0
docker pull ghcr.io/icoretech/codex-docker:0.130.0
```

2. Run the device auth flow (the `codex-bootstrap` helper forces file-based credential storage, which is required for CI):
Expand All @@ -58,7 +58,7 @@ Authenticate via device auth and store the resulting `auth.json` as a secret. Th
mkdir -p .codex
docker run --rm -it \
-v "$PWD/.codex:/home/codex/.codex" \
ghcr.io/icoretech/codex-docker:0.115.0 \
ghcr.io/icoretech/codex-docker:0.130.0 \
codex-bootstrap device-auth
```

Expand Down Expand Up @@ -145,7 +145,7 @@ You can pass a base64-encoded `config.toml` to customize Codex behavior (model d
| `openai_api_key` | No | `""` | OpenAI API key. Mutually exclusive with `codex_config`. |
| `codex_config` | No | `""` | Base64-encoded `auth.json` from a prior device-auth session. Mutually exclusive with `openai_api_key`. |
| `codex_config_toml` | No | `""` | Base64-encoded `config.toml` with Codex preferences (model, personality, etc.). Works with either auth method. |
| `image_version` | No | `0.115.0` | codex-docker image version tag used for the container. |
| `image_version` | No | `0.130.0` | codex-docker image version tag used for the container. |
| `model` | No | `""` | Model override passed to `codex exec --model`. When omitted, the model configured in your Codex config is used. |
| `reasoning_effort` | No | `""` | Reasoning effort level (`minimal`, `low`, `medium`, `high`, `xhigh`). Passed as `model_reasoning_effort` config override. |
| `network_access` | No | `false` | Allow Codex to make network requests (`curl`, `wget`, etc.) during execution. When `false`, a prompt-level policy instructs the model not to use networking tools. |
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ inputs:
description: 'codex-docker image version tag'
required: false
# renovate: datasource=docker depName=ghcr.io/icoretech/codex-docker
default: '0.115.0'
default: '0.130.0'
model:
description: 'Model override (passed to codex exec --model)'
required: false
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ openai_api_key="${INPUT_OPENAI_API_KEY:-}"
codex_config="${INPUT_CODEX_CONFIG:-}"
codex_config_toml="${INPUT_CODEX_CONFIG_TOML:-}"
# renovate: datasource=docker depName=ghcr.io/icoretech/codex-docker
image_version="${INPUT_IMAGE_VERSION:-0.115.0}"
image_version="${INPUT_IMAGE_VERSION:-0.130.0}"
model="${INPUT_MODEL:-}"
reasoning_effort="${INPUT_REASONING_EFFORT:-}"
network_access="${INPUT_NETWORK_ACCESS:-false}"
Expand Down
Loading