Skip to content

Commit ba7fa4b

Browse files
committed
chore: bump Claude Code to 2.1.63 and Agent SDK to 0.2.63
1 parent 1dd7484 commit ba7fa4b

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

base-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ runs:
124124
PATH_TO_CLAUDE_CODE_EXECUTABLE: ${{ inputs.path_to_claude_code_executable }}
125125
run: |
126126
if [ -z "$PATH_TO_CLAUDE_CODE_EXECUTABLE" ]; then
127-
CLAUDE_CODE_VERSION="2.1.61"
127+
CLAUDE_CODE_VERSION="2.1.63"
128128
echo "Installing Claude Code v${CLAUDE_CODE_VERSION}..."
129129
for attempt in 1 2 3; do
130130
echo "Installation attempt $attempt..."

base-action/bun.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

base-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@actions/core": "^1.10.1",
14-
"@anthropic-ai/claude-agent-sdk": "^0.2.61",
14+
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
1515
"shell-quote": "^1.8.3"
1616
},
1717
"devDependencies": {

bun.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@actions/core": "^1.10.1",
1414
"@actions/github": "^6.0.1",
15-
"@anthropic-ai/claude-agent-sdk": "^0.2.61",
15+
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
1616
"@modelcontextprotocol/sdk": "^1.11.0",
1717
"@octokit/graphql": "^8.2.2",
1818
"@octokit/rest": "^21.1.1",

src/entrypoints/run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async function installClaudeCode(): Promise<void> {
5151
return;
5252
}
5353

54-
const claudeCodeVersion = "2.1.61";
54+
const claudeCodeVersion = "2.1.63";
5555
console.log(`Installing Claude Code v${claudeCodeVersion}...`);
5656

5757
for (let attempt = 1; attempt <= 3; attempt++) {

0 commit comments

Comments
 (0)