From 567fe954a4527e81f132d87d1bdbcc94f7737434 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 25 Apr 2026 01:55:30 +0000 Subject: [PATCH] chore: bump Claude Code to 2.1.119 and Agent SDK to 0.2.119 --- base-action/action.yml | 2 +- base-action/bun.lock | 2 +- base-action/package.json | 2 +- bun.lock | 2 +- package.json | 2 +- src/entrypoints/run.ts | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/base-action/action.yml b/base-action/action.yml index 7bb8c8a..5cc504f 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -124,7 +124,7 @@ runs: PATH_TO_CLAUDE_CODE_EXECUTABLE: ${{ inputs.path_to_claude_code_executable }} run: | if [ -z "$PATH_TO_CLAUDE_CODE_EXECUTABLE" ]; then - CLAUDE_CODE_VERSION="2.1.120" + CLAUDE_CODE_VERSION="2.1.119" echo "Installing Claude Code v${CLAUDE_CODE_VERSION}..." for attempt in 1 2 3; do echo "Installation attempt $attempt..." diff --git a/base-action/bun.lock b/base-action/bun.lock index ef960b7..f8d168c 100644 --- a/base-action/bun.lock +++ b/base-action/bun.lock @@ -6,7 +6,7 @@ "name": "@anthropic-ai/claude-code-base-action", "dependencies": { "@actions/core": "^1.10.1", - "@anthropic-ai/claude-agent-sdk": "^0.2.120", + "@anthropic-ai/claude-agent-sdk": "^0.2.119", "shell-quote": "^1.8.3", }, "devDependencies": { diff --git a/base-action/package.json b/base-action/package.json index 5922c43..c0b1c12 100644 --- a/base-action/package.json +++ b/base-action/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@actions/core": "^1.10.1", - "@anthropic-ai/claude-agent-sdk": "^0.2.120", + "@anthropic-ai/claude-agent-sdk": "^0.2.119", "shell-quote": "^1.8.3" }, "devDependencies": { diff --git a/bun.lock b/bun.lock index 82924e2..c6db9b8 100644 --- a/bun.lock +++ b/bun.lock @@ -7,7 +7,7 @@ "dependencies": { "@actions/core": "^1.10.1", "@actions/github": "^6.0.1", - "@anthropic-ai/claude-agent-sdk": "^0.2.120", + "@anthropic-ai/claude-agent-sdk": "^0.2.119", "@modelcontextprotocol/sdk": "^1.11.0", "@octokit/graphql": "^8.2.2", "@octokit/rest": "^21.1.1", diff --git a/package.json b/package.json index f376691..527608d 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "dependencies": { "@actions/core": "^1.10.1", "@actions/github": "^6.0.1", - "@anthropic-ai/claude-agent-sdk": "^0.2.120", + "@anthropic-ai/claude-agent-sdk": "^0.2.119", "@modelcontextprotocol/sdk": "^1.11.0", "@octokit/graphql": "^8.2.2", "@octokit/rest": "^21.1.1", diff --git a/src/entrypoints/run.ts b/src/entrypoints/run.ts index 67878b9..c18ae20 100644 --- a/src/entrypoints/run.ts +++ b/src/entrypoints/run.ts @@ -65,7 +65,7 @@ async function installClaudeCode(): Promise { return customExecutable; } - const claudeCodeVersion = "2.1.120"; + const claudeCodeVersion = "2.1.119"; console.log(`Installing Claude Code v${claudeCodeVersion}...`); for (let attempt = 1; attempt <= 3; attempt++) {