From e49051a92fe0cba980ac068055709b6f68b779dd Mon Sep 17 00:00:00 2001 From: Marko Bevc Date: Fri, 25 Sep 2026 15:45:10 +0100 Subject: [PATCH] chore: bump Claude models --- .github/workflows/claude-pr-review.yml | 4 ++-- bin/suggest-version-ai.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/claude-pr-review.yml b/.github/workflows/claude-pr-review.yml index 73590c602..07147455a 100644 --- a/.github/workflows/claude-pr-review.yml +++ b/.github/workflows/claude-pr-review.yml @@ -47,7 +47,7 @@ jobs: claude_args: >- --max-turns 40 --max-budget-usd 5 - --model claude-opus-5 + --model claude-opus-5-5 --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)" prompt: | REPO: ${{ github.repository }} @@ -108,7 +108,7 @@ jobs: claude_args: >- --max-turns 40 --max-budget-usd 5 - --model claude-opus-5 + --model claude-opus-5-5 --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(go build:*),Bash(go vet:*),Bash(go mod tidy:*),Bash(git diff:*),Bash(golangci-lint:*)" prompt: | REPO: ${{ github.repository }} diff --git a/bin/suggest-version-ai.sh b/bin/suggest-version-ai.sh index 795567bb6..a25cf9bb0 100755 --- a/bin/suggest-version-ai.sh +++ b/bin/suggest-version-ai.sh @@ -6,7 +6,7 @@ # - ANTHROPIC_API_KEY: call Claude directly. # - OP_ANTHROPIC_API_KEY_REF: 1Password reference (default below; override if your item path differs). # -# Optional: CLAUDE_MODEL (default: claude-sonnet-4-6) — e.g. claude-opus-4-6. +# Optional: CLAUDE_MODEL (default: claude-sonnet-5) # # Requires: curl, jq; for 1Password: op CLI # Usage: bin/suggest-version-ai.sh [base_ref] [-o release_notes.md] @@ -95,7 +95,7 @@ BUMP: major|minor|patch ---CHANGELOG--- " -CLAUDE_MODEL="${CLAUDE_MODEL:-claude-sonnet-4-6}" +CLAUDE_MODEL="${CLAUDE_MODEL:-claude-sonnet-5}" DIFF_FILE=$(mktemp) trap 'rm -f "$DIFF_FILE" "$RELEASE_NOTES_FILE" "$SUGGESTED_VERSION_FILE"' EXIT printf '%s' "$DIFF" > "$DIFF_FILE"