From: Daan De Meyer Date: Tue, 2 Jun 2026 11:51:05 +0000 (+0000) Subject: ci: update claude review workflow to opus 4.8 X-Git-Tag: v261-rc3~22 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=0bb9142bad2b54ee1f5a8f0febe69594af725cfa;p=thirdparty%2Fsystemd.git ci: update claude review workflow to opus 4.8 Bump the Bedrock model ID to us.anthropic.claude-opus-4-8 (the -v1 suffix was dropped after 4.6), pin ANTHROPIC_DEFAULT_OPUS_MODEL so the review subagents resolve to 4.8 as well, and switch the effort level from max to xhigh. Co-developed-by: Claude Opus 4.8 --- diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml index a07c68dac40..b364c0adff5 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -192,6 +192,9 @@ jobs: env: CLAUDE_CODE_DISABLE_BACKGROUND_TASKS: "1" CLAUDE_CODE_USE_BEDROCK: "1" + # Pin the `opus` alias (used by the review subagents) to 4.8 so they + # don't silently resolve to an older model the Bedrock alias points at. + ANTHROPIC_DEFAULT_OPUS_MODEL: us.anthropic.claude-opus-4-8 run: | mkdir -p ~/.claude @@ -379,8 +382,8 @@ jobs: PROMPT claude \ - --model us.anthropic.claude-opus-4-6-v1 \ - --effort max \ + --model us.anthropic.claude-opus-4-8 \ + --effort xhigh \ --max-turns 200 \ --setting-sources user \ --output-format stream-json \