From 28f83620103c48a57093dcc2837eec89e036bb9f Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 22 Aug 2025 01:22:25 +0000 Subject: [PATCH 1/5] chore: bump Claude Code version to 1.0.88 --- action.yml | 2 +- base-action/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 03d1477..81d8a4a 100644 --- a/action.yml +++ b/action.yml @@ -178,7 +178,7 @@ runs: echo "Base-action dependencies installed" cd - # Install Claude Code globally - curl -fsSL https://claude.ai/install.sh | bash -s 1.0.86 + curl -fsSL https://claude.ai/install.sh | bash -s 1.0.88 echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Setup Network Restrictions diff --git a/base-action/action.yml b/base-action/action.yml index 168982c..c7eba19 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -118,7 +118,7 @@ runs: - name: Install Claude Code shell: bash - run: curl -fsSL https://claude.ai/install.sh | bash -s 1.0.86 + run: curl -fsSL https://claude.ai/install.sh | bash -s 1.0.88 - name: Run Claude Code Action shell: bash From a47fdbe49f641eadaf74042deb4cd9dfb8a981d5 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 22 Aug 2025 23:01:22 +0000 Subject: [PATCH 2/5] chore: bump Claude Code version to 1.0.89 --- action.yml | 2 +- base-action/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 81d8a4a..0382ab2 100644 --- a/action.yml +++ b/action.yml @@ -178,7 +178,7 @@ runs: echo "Base-action dependencies installed" cd - # Install Claude Code globally - curl -fsSL https://claude.ai/install.sh | bash -s 1.0.88 + curl -fsSL https://claude.ai/install.sh | bash -s 1.0.89 echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Setup Network Restrictions diff --git a/base-action/action.yml b/base-action/action.yml index c7eba19..10f56ac 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -118,7 +118,7 @@ runs: - name: Install Claude Code shell: bash - run: curl -fsSL https://claude.ai/install.sh | bash -s 1.0.88 + run: curl -fsSL https://claude.ai/install.sh | bash -s 1.0.89 - name: Run Claude Code Action shell: bash From 88be3fe6f5bf8d7307245835b5e13044898f8e02 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sun, 24 Aug 2025 23:05:18 +0000 Subject: [PATCH 3/5] chore: bump Claude Code version to 1.0.90 --- action.yml | 2 +- base-action/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 0382ab2..abda69e 100644 --- a/action.yml +++ b/action.yml @@ -178,7 +178,7 @@ runs: echo "Base-action dependencies installed" cd - # Install Claude Code globally - curl -fsSL https://claude.ai/install.sh | bash -s 1.0.89 + curl -fsSL https://claude.ai/install.sh | bash -s 1.0.90 echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Setup Network Restrictions diff --git a/base-action/action.yml b/base-action/action.yml index 10f56ac..2e462d1 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -118,7 +118,7 @@ runs: - name: Install Claude Code shell: bash - run: curl -fsSL https://claude.ai/install.sh | bash -s 1.0.89 + run: curl -fsSL https://claude.ai/install.sh | bash -s 1.0.90 - name: Run Claude Code Action shell: bash From dc65f4ac98d71813b5361d5266d0d0082e367b30 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Mon, 25 Aug 2025 08:11:15 -0700 Subject: [PATCH 4/5] =?UTF-8?q?feat:=20add=20path=5Fto=5Fclaude=5Fcode=5Fe?= =?UTF-8?q?xecutable=20input=20for=20custom=20Claude=20Code=E2=80=A6=20(#4?= =?UTF-8?q?80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: add path_to_claude_code_executable input for custom Claude Code installations Adds optional input to specify a custom Claude Code executable path, bypassing automatic installation. This enables: - Using pre-installed Claude Code binaries - Testing with specific versions for debugging - Custom installation paths in unique environments Includes warning that older versions may cause compatibility issues with new features. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude * test: add workflow to test custom Claude Code executable path Adds test workflow that: - Manually installs Claude Code via install script - Uses the new path_to_claude_code_executable input - Verifies the custom executable path works correctly - Validates output and execution success 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --------- Co-authored-by: Claude --- .github/workflows/test-custom-executable.yml | 84 ++++++++++++++++++++ action.yml | 20 ++++- base-action/action.yml | 16 +++- base-action/src/index.ts | 2 + base-action/src/run-claude.ts | 6 +- 5 files changed, 123 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/test-custom-executable.yml diff --git a/.github/workflows/test-custom-executable.yml b/.github/workflows/test-custom-executable.yml new file mode 100644 index 0000000..cf38c97 --- /dev/null +++ b/.github/workflows/test-custom-executable.yml @@ -0,0 +1,84 @@ +name: Test Custom Claude Code Executable + +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + +jobs: + test-custom-executable: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + + - name: Install Claude Code manually + run: | + echo "Installing Claude Code using install script..." + curl -fsSL https://claude.ai/install.sh | bash -s latest + echo "Claude Code installed at: $HOME/.local/bin/claude" + + # Verify installation + if [ -f "$HOME/.local/bin/claude" ]; then + echo "✅ Claude executable found" + ls -la "$HOME/.local/bin/claude" + else + echo "❌ Claude executable not found" + exit 1 + fi + + - name: Test with custom executable path + id: custom-exe-test + uses: ./base-action + with: + prompt: | + List the files in the current directory starting with "package" + anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + path_to_claude_code_executable: /home/runner/.local/bin/claude + allowed_tools: "LS,Read" + timeout_minutes: "3" + + - name: Verify custom executable output + run: | + OUTPUT_FILE="${{ steps.custom-exe-test.outputs.execution_file }}" + CONCLUSION="${{ steps.custom-exe-test.outputs.conclusion }}" + + echo "Conclusion: $CONCLUSION" + echo "Output file: $OUTPUT_FILE" + + if [ "$CONCLUSION" = "success" ]; then + echo "✅ Action completed successfully with custom executable" + else + echo "❌ Action failed with custom executable" + exit 1 + fi + + if [ -f "$OUTPUT_FILE" ]; then + if [ -s "$OUTPUT_FILE" ]; then + echo "✅ Execution log file created successfully with content" + echo "Validating JSON format:" + if jq . "$OUTPUT_FILE" > /dev/null 2>&1; then + echo "✅ Output is valid JSON" + echo "Content preview:" + head -c 500 "$OUTPUT_FILE" + echo "" + + # Verify the task was completed + if grep -q "package" "$OUTPUT_FILE"; then + echo "✅ Claude successfully listed package files" + else + echo "⚠️ Could not verify if package files were listed" + fi + else + echo "❌ Output is not valid JSON" + exit 1 + fi + else + echo "❌ Execution log file is empty" + exit 1 + fi + else + echo "❌ Execution log file not found" + exit 1 + fi diff --git a/action.yml b/action.yml index abda69e..0ebaaf4 100644 --- a/action.yml +++ b/action.yml @@ -118,6 +118,10 @@ inputs: description: "Restrict network access to these domains only (newline-separated). If not set, no restrictions are applied. Provider domains are auto-detected." required: false default: "" + path_to_claude_code_executable: + description: "Optional path to a custom Claude Code executable. If provided, skips automatic installation and uses this executable instead. WARNING: Using an older version may cause problems if the action begins taking advantage of new Claude Code features. This input is typically not needed unless you're debugging something specific or have unique needs in your environment." + required: false + default: "" outputs: execution_file: @@ -177,9 +181,18 @@ runs: bun install echo "Base-action dependencies installed" cd - - # Install Claude Code globally - curl -fsSL https://claude.ai/install.sh | bash -s 1.0.90 - echo "$HOME/.local/bin" >> "$GITHUB_PATH" + + # Install Claude Code if no custom executable is provided + if [ -z "${{ inputs.path_to_claude_code_executable }}" ]; then + echo "Installing Claude Code..." + curl -fsSL https://claude.ai/install.sh | bash -s 1.0.90 + echo "$HOME/.local/bin" >> "$GITHUB_PATH" + else + echo "Using custom Claude Code executable: ${{ inputs.path_to_claude_code_executable }}" + # Add the directory containing the custom executable to PATH + CLAUDE_DIR=$(dirname "${{ inputs.path_to_claude_code_executable }}") + echo "$CLAUDE_DIR" >> "$GITHUB_PATH" + fi - name: Setup Network Restrictions if: steps.prepare.outputs.contains_trigger == 'true' && inputs.experimental_allowed_domains != '' @@ -214,6 +227,7 @@ runs: INPUT_FALLBACK_MODEL: ${{ inputs.fallback_model }} INPUT_EXPERIMENTAL_SLASH_COMMANDS_DIR: ${{ github.action_path }}/slash-commands INPUT_ACTION_INPUTS_PRESENT: ${{ steps.prepare.outputs.action_inputs_present }} + INPUT_PATH_TO_CLAUDE_CODE_EXECUTABLE: ${{ inputs.path_to_claude_code_executable }} # Model configuration ANTHROPIC_MODEL: ${{ inputs.model || inputs.anthropic_model }} diff --git a/base-action/action.yml b/base-action/action.yml index 2e462d1..c073555 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -87,6 +87,10 @@ inputs: description: "Whether to use Node.js dependency caching (set to true only for Node.js projects with lock files)" required: false default: "false" + path_to_claude_code_executable: + description: "Optional path to a custom Claude Code executable. If provided, skips automatic installation and uses this executable instead. WARNING: Using an older version may cause problems if the action begins taking advantage of new Claude Code features. This input is typically not needed unless you're debugging something specific or have unique needs in your environment." + required: false + default: "" outputs: conclusion: @@ -118,7 +122,16 @@ runs: - name: Install Claude Code shell: bash - run: curl -fsSL https://claude.ai/install.sh | bash -s 1.0.90 + run: | + if [ -z "${{ inputs.path_to_claude_code_executable }}" ]; then + echo "Installing Claude Code..." + curl -fsSL https://claude.ai/install.sh | bash -s 1.0.90 + else + echo "Using custom Claude Code executable: ${{ inputs.path_to_claude_code_executable }}" + # Add the directory containing the custom executable to PATH + CLAUDE_DIR=$(dirname "${{ inputs.path_to_claude_code_executable }}") + echo "$CLAUDE_DIR" >> "$GITHUB_PATH" + fi - name: Run Claude Code Action shell: bash @@ -147,6 +160,7 @@ runs: INPUT_CLAUDE_ENV: ${{ inputs.claude_env }} INPUT_FALLBACK_MODEL: ${{ inputs.fallback_model }} INPUT_EXPERIMENTAL_SLASH_COMMANDS_DIR: ${{ inputs.experimental_slash_commands_dir }} + INPUT_PATH_TO_CLAUDE_CODE_EXECUTABLE: ${{ inputs.path_to_claude_code_executable }} # Provider configuration ANTHROPIC_API_KEY: ${{ inputs.anthropic_api_key }} diff --git a/base-action/src/index.ts b/base-action/src/index.ts index f4d3724..0675ff9 100644 --- a/base-action/src/index.ts +++ b/base-action/src/index.ts @@ -31,6 +31,8 @@ async function run() { claudeEnv: process.env.INPUT_CLAUDE_ENV, fallbackModel: process.env.INPUT_FALLBACK_MODEL, model: process.env.ANTHROPIC_MODEL, + pathToClaudeCodeExecutable: + process.env.INPUT_PATH_TO_CLAUDE_CODE_EXECUTABLE, }); } catch (error) { core.setFailed(`Action failed with error: ${error}`); diff --git a/base-action/src/run-claude.ts b/base-action/src/run-claude.ts index 1d095b7..2bd4af2 100644 --- a/base-action/src/run-claude.ts +++ b/base-action/src/run-claude.ts @@ -22,6 +22,7 @@ export type ClaudeOptions = { fallbackModel?: string; timeoutMinutes?: string; model?: string; + pathToClaudeCodeExecutable?: string; }; type PreparedConfig = { @@ -168,7 +169,10 @@ export async function runClaude(promptPath: string, options: ClaudeOptions) { pipeStream.destroy(); }); - const claudeProcess = spawn("claude", config.claudeArgs, { + // Use custom executable path if provided, otherwise default to "claude" + const claudeExecutable = options.pathToClaudeCodeExecutable || "claude"; + + const claudeProcess = spawn(claudeExecutable, config.claudeArgs, { stdio: ["pipe", "pipe", "inherit"], env: { ...process.env, From 9c7e1bac949439d391a133337eb0498238d1c2b4 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Mon, 25 Aug 2025 11:08:12 -0700 Subject: [PATCH 5/5] feat: add path_to_bun_executable input for custom Bun installations (#481) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: add path_to_bun_executable input for custom Bun installations Adds optional input to specify a custom Bun executable path, bypassing automatic installation. This enables: - Using pre-installed Bun binaries for faster workflow runs - Testing with specific Bun versions for debugging - Custom installation paths in unique environments Follows the same pattern as path_to_claude_code_executable input. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude * refactor: consolidate custom executable tests into single workflow - Remove separate test-custom-executable.yml workflow - Rename test-custom-bun.yml to test-custom-executables.yml - Add comprehensive tests for custom Claude, custom Bun, and both together - Improve verification steps with better error handling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude * simplify: test workflow to single job testing both custom executables - Remove individual test jobs for Claude and Bun - Keep only the combined test that validates both custom executables work together - Simplifies CI workflow and reduces redundant testing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --------- Co-authored-by: Claude --- .github/workflows/test-custom-executable.yml | 84 ----------------- .github/workflows/test-custom-executables.yml | 90 +++++++++++++++++++ action.yml | 15 ++++ base-action/action.yml | 15 ++++ 4 files changed, 120 insertions(+), 84 deletions(-) delete mode 100644 .github/workflows/test-custom-executable.yml create mode 100644 .github/workflows/test-custom-executables.yml diff --git a/.github/workflows/test-custom-executable.yml b/.github/workflows/test-custom-executable.yml deleted file mode 100644 index cf38c97..0000000 --- a/.github/workflows/test-custom-executable.yml +++ /dev/null @@ -1,84 +0,0 @@ -name: Test Custom Claude Code Executable - -on: - push: - branches: - - main - pull_request: - workflow_dispatch: - -jobs: - test-custom-executable: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - - - name: Install Claude Code manually - run: | - echo "Installing Claude Code using install script..." - curl -fsSL https://claude.ai/install.sh | bash -s latest - echo "Claude Code installed at: $HOME/.local/bin/claude" - - # Verify installation - if [ -f "$HOME/.local/bin/claude" ]; then - echo "✅ Claude executable found" - ls -la "$HOME/.local/bin/claude" - else - echo "❌ Claude executable not found" - exit 1 - fi - - - name: Test with custom executable path - id: custom-exe-test - uses: ./base-action - with: - prompt: | - List the files in the current directory starting with "package" - anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} - path_to_claude_code_executable: /home/runner/.local/bin/claude - allowed_tools: "LS,Read" - timeout_minutes: "3" - - - name: Verify custom executable output - run: | - OUTPUT_FILE="${{ steps.custom-exe-test.outputs.execution_file }}" - CONCLUSION="${{ steps.custom-exe-test.outputs.conclusion }}" - - echo "Conclusion: $CONCLUSION" - echo "Output file: $OUTPUT_FILE" - - if [ "$CONCLUSION" = "success" ]; then - echo "✅ Action completed successfully with custom executable" - else - echo "❌ Action failed with custom executable" - exit 1 - fi - - if [ -f "$OUTPUT_FILE" ]; then - if [ -s "$OUTPUT_FILE" ]; then - echo "✅ Execution log file created successfully with content" - echo "Validating JSON format:" - if jq . "$OUTPUT_FILE" > /dev/null 2>&1; then - echo "✅ Output is valid JSON" - echo "Content preview:" - head -c 500 "$OUTPUT_FILE" - echo "" - - # Verify the task was completed - if grep -q "package" "$OUTPUT_FILE"; then - echo "✅ Claude successfully listed package files" - else - echo "⚠️ Could not verify if package files were listed" - fi - else - echo "❌ Output is not valid JSON" - exit 1 - fi - else - echo "❌ Execution log file is empty" - exit 1 - fi - else - echo "❌ Execution log file not found" - exit 1 - fi diff --git a/.github/workflows/test-custom-executables.yml b/.github/workflows/test-custom-executables.yml new file mode 100644 index 0000000..e05f71f --- /dev/null +++ b/.github/workflows/test-custom-executables.yml @@ -0,0 +1,90 @@ +name: Test Custom Executables + +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + +jobs: + test-custom-executables: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + + - name: Install Bun manually + run: | + echo "Installing Bun..." + curl -fsSL https://bun.sh/install | bash + echo "Bun installed at: $HOME/.bun/bin/bun" + + # Verify Bun installation + if [ -f "$HOME/.bun/bin/bun" ]; then + echo "✅ Bun executable found" + $HOME/.bun/bin/bun --version + else + echo "❌ Bun executable not found" + exit 1 + fi + + - name: Install Claude Code manually + run: | + echo "Installing Claude Code..." + curl -fsSL https://claude.ai/install.sh | bash -s latest + echo "Claude Code installed at: $HOME/.local/bin/claude" + + # Verify Claude installation + if [ -f "$HOME/.local/bin/claude" ]; then + echo "✅ Claude executable found" + ls -la "$HOME/.local/bin/claude" + else + echo "❌ Claude executable not found" + exit 1 + fi + + - name: Test with both custom executables + id: custom-test + uses: ./base-action + with: + prompt: | + List the files in the current directory starting with "package" + anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + path_to_claude_code_executable: /home/runner/.local/bin/claude + path_to_bun_executable: /home/runner/.bun/bin/bun + allowed_tools: "LS,Read" + timeout_minutes: "3" + + - name: Verify custom executables worked + run: | + OUTPUT_FILE="${{ steps.custom-test.outputs.execution_file }}" + CONCLUSION="${{ steps.custom-test.outputs.conclusion }}" + + echo "Conclusion: $CONCLUSION" + echo "Output file: $OUTPUT_FILE" + + if [ "$CONCLUSION" = "success" ]; then + echo "✅ Action completed successfully with both custom executables" + else + echo "❌ Action failed with custom executables" + exit 1 + fi + + if [ -f "$OUTPUT_FILE" ] && [ -s "$OUTPUT_FILE" ]; then + echo "✅ Execution log file created successfully" + if jq . "$OUTPUT_FILE" > /dev/null 2>&1; then + echo "✅ Output is valid JSON" + # Verify the task was completed + if grep -q "package" "$OUTPUT_FILE"; then + echo "✅ Claude successfully listed package files" + else + echo "⚠️ Could not verify if package files were listed" + fi + else + echo "❌ Output is not valid JSON" + exit 1 + fi + else + echo "❌ Execution log file not found or empty" + exit 1 + fi diff --git a/action.yml b/action.yml index 0ebaaf4..f548b1c 100644 --- a/action.yml +++ b/action.yml @@ -122,6 +122,10 @@ inputs: description: "Optional path to a custom Claude Code executable. If provided, skips automatic installation and uses this executable instead. WARNING: Using an older version may cause problems if the action begins taking advantage of new Claude Code features. This input is typically not needed unless you're debugging something specific or have unique needs in your environment." required: false default: "" + path_to_bun_executable: + description: "Optional path to a custom Bun executable. If provided, skips automatic Bun installation and uses this executable instead. WARNING: Using an incompatible version may cause problems if the action requires specific Bun features. This input is typically not needed unless you're debugging something specific or have unique needs in your environment." + required: false + default: "" outputs: execution_file: @@ -135,10 +139,20 @@ runs: using: "composite" steps: - name: Install Bun + if: inputs.path_to_bun_executable == '' uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # https://github.com/oven-sh/setup-bun/releases/tag/v2.0.2 with: bun-version: 1.2.11 + - name: Setup Custom Bun Path + if: inputs.path_to_bun_executable != '' + shell: bash + run: | + echo "Using custom Bun executable: ${{ inputs.path_to_bun_executable }}" + # Add the directory containing the custom executable to PATH + BUN_DIR=$(dirname "${{ inputs.path_to_bun_executable }}") + echo "$BUN_DIR" >> "$GITHUB_PATH" + - name: Install Dependencies shell: bash run: | @@ -228,6 +242,7 @@ runs: INPUT_EXPERIMENTAL_SLASH_COMMANDS_DIR: ${{ github.action_path }}/slash-commands INPUT_ACTION_INPUTS_PRESENT: ${{ steps.prepare.outputs.action_inputs_present }} INPUT_PATH_TO_CLAUDE_CODE_EXECUTABLE: ${{ inputs.path_to_claude_code_executable }} + INPUT_PATH_TO_BUN_EXECUTABLE: ${{ inputs.path_to_bun_executable }} # Model configuration ANTHROPIC_MODEL: ${{ inputs.model || inputs.anthropic_model }} diff --git a/base-action/action.yml b/base-action/action.yml index c073555..0e784c3 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -91,6 +91,10 @@ inputs: description: "Optional path to a custom Claude Code executable. If provided, skips automatic installation and uses this executable instead. WARNING: Using an older version may cause problems if the action begins taking advantage of new Claude Code features. This input is typically not needed unless you're debugging something specific or have unique needs in your environment." required: false default: "" + path_to_bun_executable: + description: "Optional path to a custom Bun executable. If provided, skips automatic Bun installation and uses this executable instead. WARNING: Using an incompatible version may cause problems if the action requires specific Bun features. This input is typically not needed unless you're debugging something specific or have unique needs in your environment." + required: false + default: "" outputs: conclusion: @@ -110,10 +114,20 @@ runs: cache: ${{ inputs.use_node_cache == 'true' && 'npm' || '' }} - name: Install Bun + if: inputs.path_to_bun_executable == '' uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # https://github.com/oven-sh/setup-bun/releases/tag/v2.0.2 with: bun-version: 1.2.11 + - name: Setup Custom Bun Path + if: inputs.path_to_bun_executable != '' + shell: bash + run: | + echo "Using custom Bun executable: ${{ inputs.path_to_bun_executable }}" + # Add the directory containing the custom executable to PATH + BUN_DIR=$(dirname "${{ inputs.path_to_bun_executable }}") + echo "$BUN_DIR" >> "$GITHUB_PATH" + - name: Install Dependencies shell: bash run: | @@ -161,6 +175,7 @@ runs: INPUT_FALLBACK_MODEL: ${{ inputs.fallback_model }} INPUT_EXPERIMENTAL_SLASH_COMMANDS_DIR: ${{ inputs.experimental_slash_commands_dir }} INPUT_PATH_TO_CLAUDE_CODE_EXECUTABLE: ${{ inputs.path_to_claude_code_executable }} + INPUT_PATH_TO_BUN_EXECUTABLE: ${{ inputs.path_to_bun_executable }} # Provider configuration ANTHROPIC_API_KEY: ${{ inputs.anthropic_api_key }}