From 70cb0d10164e2612eb2e58ff1fa99ac96b7cfd30 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 21 Oct 2025 05:30:35 +0000 Subject: [PATCH] feat: upgrade GitHub workflows to use Claude Sonnet 4.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update all Claude Code GitHub Action workflows to use the latest Sonnet 4.5 model (claude-sonnet-4-5-20250929) instead of the default Sonnet 4.0 model. This provides improved performance and capabilities for: - Issue commenting and PR reviews (claude.yml) - Automated issue triage (claude-issue-triage.yml) - Duplicate issue detection (claude-dedupe-issues.yml) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/claude-dedupe-issues.yml | 1 + .github/workflows/claude-issue-triage.yml | 1 + .github/workflows/claude.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/claude-dedupe-issues.yml b/.github/workflows/claude-dedupe-issues.yml index 9776b605..afcdf9f5 100644 --- a/.github/workflows/claude-dedupe-issues.yml +++ b/.github/workflows/claude-dedupe-issues.yml @@ -27,6 +27,7 @@ jobs: with: prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + claude_args: "--model claude-sonnet-4-5-20250929" claude_env: | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/claude-issue-triage.yml b/.github/workflows/claude-issue-triage.yml index d534053e..49f3d547 100644 --- a/.github/workflows/claude-issue-triage.yml +++ b/.github/workflows/claude-issue-triage.yml @@ -102,5 +102,6 @@ jobs: timeout_minutes: "5" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} mcp_config: /tmp/mcp-config/mcp-servers.json + claude_args: "--model claude-sonnet-4-5-20250929" claude_env: | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 7cccc9c4..ab28f5fc 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -34,4 +34,5 @@ jobs: uses: anthropics/claude-code-action@beta with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + claude_args: "--model claude-sonnet-4-5-20250929"