From b89253bcb0a1d0a0f58b39366edc9cd12338caab Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Mon, 21 Jul 2025 20:41:45 -0700 Subject: [PATCH] chore: use bun install instead of npm for Claude Code installation (#323) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace npm install with bun install for consistency with the rest of the project's package management. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index ee36b2b..4c77c8d 100644 --- a/action.yml +++ b/action.yml @@ -193,7 +193,7 @@ runs: shell: bash run: | # Install Claude Code globally - npm install -g @anthropic-ai/claude-code@1.0.57 + bun install -g @anthropic-ai/claude-code@1.0.57 # Run the base-action cd ${GITHUB_ACTION_PATH}/base-action