Tell this to your Claude Code or Codex Cloud
- Both Claude automation workflows explicitly request the
claude-sonnet-4-5-20250929model when callinganthropics/claude-code-action@v1, ensuring consistent behavior across general and review scenarios.
.github/workflows/claude.yml– adjust theRun Claude Codestep so itsclaude_argscontains only--model claude-sonnet-4-5-20250929unless additional flags are required..github/workflows/claude-code-review.yml– keep the existing allowed-tools string but ensure the same model flag is the first argument inclaude_args.
- Open
.github/workflows/claude.yml. In theRun Claude Codestep, setclaude_argsto--model claude-sonnet-4-5-20250929, preserving every other setting in the workflow. - Open
.github/workflows/claude-code-review.yml. In theRun Claude Code Reviewstep, update theclaude_argsstring so it starts with--model claude-sonnet-4-5-20250929while leaving the quoted--allowed-toolslist untouched. - Save both workflow files, commit with a message such as
Add model argument to Claude workflows, and push the branch. - Open a PR describing that the general and review Claude workflows now request the Sonnet 4.5 model.