[BUG] marketplace plugin fails with 'Executable not found' on fresh runners (v2.1.53)

Resolved 💬 3 comments Opened Feb 25, 2026 by hoffination Closed Feb 25, 2026

Preflight Checklist

  • [x] I have searched existing issues and this hasn't been reported yet
  • [x] This is a single bug report (please file separate reports for different bugs)
  • [x] I am using the latest version of Claude Code

What's Wrong?

When using anthropics/claude-code-action@v1 with plugin_marketplaces, the marketplace step fails with Executable not found in $PATH: "claude". The installer reports success (Location: ~/.local/bin/claude) but warns /home/runner/.local/bin does not exist.

What Should Happen?

The installer should create ~/.local/bin and ensure it's on PATH before the marketplace plugin step runs.

Error Messages/Logs

⚠ Setup notes:
    • installMethod is native, but directory /home/runner/.local/bin does not exist
    • installMethod is native, but claude command not found at /home/runner/.local/bin/claude

Steps to Reproduce

  1. Use anthropics/claude-code-action@v1 with plugin_marketplaces on a fresh ubuntu-latest runner
  2. Action installs Claude Code v2.1.53
  3. Marketplace step fails — claude not on PATH

Claude Model

Sonnet (default)

Is this a regression?

Yes, this worked in a previous version

Last Working Version

2.1.52

Claude Code Version

2.1.53

Platform

Anthropic API

Operating System

Ubuntu/Debian Linux

Terminal/Shell

Non-interactive/CI environment

Additional Information

Workaround is adding mkdir -p /home/runner/.local/bin && echo "/home/runner/.local/bin" >> $GITHUB_PATH as a step before the action.

View original on GitHub ↗

This issue has 3 comments on GitHub. Read the full discussion on GitHub ↗