From 8fc9a366cb5d4bb8e12ec55dd3bbd0c2ac803a0b Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Mon, 28 Jul 2025 09:44:51 -0700 Subject: [PATCH] chore: update Claude Code installation to use bun and version 1.0.61 (#352) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Switch from npm to bun for Claude Code installation in base-action - Update Claude Code version from 1.0.59 to 1.0.61 in main action - Ensures consistent package manager usage across both action files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- action.yml | 2 +- base-action/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index fb54de0..cb68d4f 100644 --- a/action.yml +++ b/action.yml @@ -172,7 +172,7 @@ runs: echo "Base-action dependencies installed" cd - # Install Claude Code globally - bun install -g @anthropic-ai/claude-code@1.0.59 + bun install -g @anthropic-ai/claude-code@1.0.61 - name: Setup Network Restrictions if: steps.prepare.outputs.contains_trigger == 'true' && inputs.experimental_allowed_domains != '' diff --git a/base-action/action.yml b/base-action/action.yml index 5b9acef..02c9d3b 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -115,7 +115,7 @@ runs: - name: Install Claude Code shell: bash - run: npm install -g @anthropic-ai/claude-code@1.0.61 + run: bun install -g @anthropic-ai/claude-code@1.0.61 - name: Run Claude Code Action shell: bash