Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: oxc-project/setup-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.0
Choose a base ref
...
head repository: oxc-project/setup-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.0
Choose a head ref
  • 4 commits
  • 2 files changed
  • 3 contributors

Commits on Apr 29, 2026

  1. feat: auto-skip actions/setup-node on Alpine Linux (#19)

    * feat: auto-skip actions/setup-node on Alpine Linux
    
    actions/setup-node only ships glibc Node binaries via the GitHub
    toolcache, so installing Node into an Alpine container shadows the
    container's musl-native Node with a binary that cannot run. Subprocesses
    that spawn `node` then fail with ENOENT (the glibc dynamic linker is
    missing on Alpine).
    
    Add an `install-node` input defaulting to `auto`: detect Alpine via
    /etc/alpine-release and skip actions/setup-node when present, falling
    back to the container's Node. Users can force-install with `'true'` or
    opt out entirely with `'false'`.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    
    * refactor: skip Alpine detect on non-Linux, drop redundant else branch
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    
    * refactor: drop install-node input, always auto-detect Alpine
    
    The tri-state input added more surface area than it earned:
    - install-node: true is nonsensical (glibc Node can't run on musl)
    - install-node: false has no real use case (skip the action entirely)
    - install-node: auto is the only useful behavior
    
    Just auto-detect /etc/alpine-release on Linux and skip
    actions/setup-node when present.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    
    ---------
    
    Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    Boshen and claude authored Apr 29, 2026
    Configuration menu
    Copy the full SHA
    9ac11b0 View commit details
    Browse the repository at this point in the history
  2. Update pnpm/action-setup action to v6 (#16)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 29, 2026
    Configuration menu
    Copy the full SHA
    2571a72 View commit details
    Browse the repository at this point in the history
  3. Update actions/setup-node action to v6.4.0 (#18)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 29, 2026
    Configuration menu
    Copy the full SHA
    876b916 View commit details
    Browse the repository at this point in the history
  4. Update actions/cache action to v5.0.5 (#17)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 29, 2026
    Configuration menu
    Copy the full SHA
    ab97f03 View commit details
    Browse the repository at this point in the history
Loading