We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 657fb7c commit c26cb64Copy full SHA for c26cb64
2 files changed
base-action/action.yml
@@ -124,7 +124,7 @@ runs:
124
PATH_TO_CLAUDE_CODE_EXECUTABLE: ${{ inputs.path_to_claude_code_executable }}
125
run: |
126
if [ -z "$PATH_TO_CLAUDE_CODE_EXECUTABLE" ]; then
127
- CLAUDE_CODE_VERSION="2.1.98"
+ CLAUDE_CODE_VERSION="2.1.100"
128
echo "Installing Claude Code v${CLAUDE_CODE_VERSION}..."
129
for attempt in 1 2 3; do
130
echo "Installation attempt $attempt..."
src/entrypoints/run.ts
@@ -64,7 +64,7 @@ async function installClaudeCode(): Promise<void> {
64
return;
65
}
66
67
- const claudeCodeVersion = "2.1.98";
+ const claudeCodeVersion = "2.1.100";
68
console.log(`Installing Claude Code v${claudeCodeVersion}...`);
69
70
for (let attempt = 1; attempt <= 3; attempt++) {
0 commit comments