diff --git a/base-action/action.yml b/base-action/action.yml index 2053f8d..e83760e 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.98" + CLAUDE_CODE_VERSION="2.1.100" echo "Installing Claude Code v${CLAUDE_CODE_VERSION}..." for attempt in 1 2 3; do echo "Installation attempt $attempt..." diff --git a/src/entrypoints/run.ts b/src/entrypoints/run.ts index 4bfdddf..d056347 100644 --- a/src/entrypoints/run.ts +++ b/src/entrypoints/run.ts @@ -64,7 +64,7 @@ async function installClaudeCode(): Promise { return; } - const claudeCodeVersion = "2.1.98"; + const claudeCodeVersion = "2.1.100"; console.log(`Installing Claude Code v${claudeCodeVersion}...`); for (let attempt = 1; attempt <= 3; attempt++) {