ci: switch to ubuntu-latest now that repo is public #4
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix/ci-use-ubuntu-latest"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Why CI run 20 was red
actions/checkout@v4(and the post step) failed withCannot find: node in PATH. The bareself-hostedlabel was intended to route to the Mac mini runner (where Node is on $PATH natively), but the Linux act_runnermolecule-runner-11also matchesself-hostedand runs jobs in a container image without a node binary, so every JS-based action crashed at start.Fix
The repo is public now, so the original carve-out (private repos on self-hosted because the GitHub-hosted minute budget was exhausted) no longer applies. Switch
runs-ontoubuntu-latest, which act_runner maps to an image with Node preinstalled. Drop the now-stale comment.If we ever need to route back to the Mac mini, use the tighter label
[self-hosted, macos, arm64]so the Linux runner stops eating the job.