fix(gha-runners): install gh CLI and Rust toolchain in docker image#66
Merged
Conversation
release-plz/git-config shells out to `gh api graphql` to derive the commit identity; the container lacked gh and the job exit-127'd. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
release-plz and other Rust-based workflows shell out to `cargo`; the container lacked the Rust toolchain and the job exit-127'd. Installed via rustup under /usr/local so both root and the runner user have it on PATH. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
wavekat-eason
pushed a commit
that referenced
this pull request
May 19, 2026
🤖 I have created a release *beep* *boop* --- ## [0.0.23](wavekat-com-v0.0.22...wavekat-com-v0.0.23) (2026-05-19) ### Features * **gha-runners:** dockerized self-hosted runner setup ([#65](#65)) ([120fd7e](120fd7e)) * self-hosted GHA runners on aoc-m3l + role-label workflow routing ([#64](#64)) ([d2d8415](d2d8415)) ### Bug Fixes * **gha-runners:** install gh CLI and Rust toolchain in docker image ([#66](#66)) ([9b167e7](9b167e7)) * **star-tracker:** de-inflate chart-view counts + per-repo breakdown ([#62](#62)) ([954f9d4](954f9d4)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ghCLI (via officialcli.github.comapt repo) to the dockerized self-hosted runner image — release-plz/git-config shells out togh api graphqland was exit-127'ing./usr/local— release-plz also needscargo, which was likewise missing.Context
Failure observed on https://github.com/wavekat/wavekat-platform-client/actions/runs/26085121264 — first
gh: command not found, thencargo: command not foundafter the gh fix.Test plan
aoc-m3l: pull this branch, run./scripts/setup-gha-runners-docker.sh(idempotent — tears down old containers/volumes and rebuilds image)docker exec gha-runner-1 gh --versiondocker exec gha-runner-1 cargo --version🤖 Generated with Claude Code