Skip to content

Commit 4dffe1c

Browse files
jfrench9claude
andauthored
Upgrade Claude model reference in CI/CD workflows (#63)
## Summary Updates the Claude model reference used in GitHub Actions workflows to ensure compatibility with the latest API specifications and improved performance. ## Key Changes - Updated model reference in the `create-pr.yml` workflow configuration - Updated model reference in the `tag-release.yml` workflow configuration - Maintained existing workflow structure and functionality ## Key Accomplishments - ✅ Ensures CI/CD workflows use the most current Claude model version - ✅ Maintains backward compatibility with existing workflow triggers - ✅ Preserves all existing workflow functionality and parameters ## Breaking Changes None. This is a non-breaking update that only modifies internal model references. ## Testing Notes - Verify that PR creation workflows function correctly with the updated model - Confirm tag release automation continues to work as expected - Monitor workflow execution logs for any model-related issues ## Infrastructure Considerations - This change affects GitHub Actions workflow execution - No additional dependencies or permissions required - Workflows will utilize the updated model on next execution - Consider monitoring initial workflow runs to ensure smooth transition --- 🤖 Generated with [Claude Code](https://claude.ai/code) **Branch Info:** - Source: `chore/upgrade-claude-cicd-model` - Target: `main` - Type: feature Co-Authored-By: Claude <noreply@anthropic.com>
2 parents 05d501b + ac86cb8 commit 4dffe1c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/create-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ jobs:
210210
211211
# Create a proper JSON payload using jq to handle escaping
212212
PAYLOAD=$(jq -n \
213-
--arg model "claude-sonnet-4-20250514" \
213+
--arg model "${{ vars.CLAUDE_MODEL || 'claude-sonnet-4-6' }}" \
214214
--arg content "$PROMPT" \
215215
'{
216216
"model": $model,

.github/workflows/tag-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
174174
# Create a proper JSON payload using jq to handle escaping
175175
PAYLOAD=$(jq -n \
176-
--arg model "claude-sonnet-4-20250514" \
176+
--arg model "${{ vars.CLAUDE_MODEL || 'claude-sonnet-4-6' }}" \
177177
--arg content "$PROMPT" \
178178
'{
179179
"model": $model,

0 commit comments

Comments
 (0)