From 9901ad0b6658de75904dd924e3ce2f933122892e Mon Sep 17 00:00:00 2001 From: Mark Wylde Date: Sun, 26 Jul 2026 21:27:44 +0100 Subject: [PATCH] fix: install Claude 2.1 with official installer --- base-action/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/base-action/action.yml b/base-action/action.yml index 3abc608..4cb8ae7 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -115,7 +115,9 @@ runs: - name: Install Claude Code shell: bash - run: bun install -g @anthropic-ai/claude-code@2.1.173 + run: | + curl -fsSL https://claude.ai/install.sh | bash -s 2.1.173 + echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Run Claude Code Action shell: bash