fix(ci): install just via pinned setup-just to stop 403 on lint job#595
Merged
Conversation
The install-build-deps composite action piped just.systems/install.sh into bash. That script's unauthenticated GitHub release download intermittently returns HTTP 403 on CI runners, failing the required 'lint' job at 'Install build dependencies (just + linters)' and turning main red. Switch to extractions/setup-just@v4 (SHA-pinned) — the same authenticated, cached install already used in _required.yml. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: mvillmow <4211002+mvillmow@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
mainis red on the requiredlintcheck. The job fails at Install build dependencies (just + linters) with:The
install-build-depscomposite action installedjustby pipingjust.systems/install.shinto bash. That script's unauthenticated GitHub release download intermittently 403s on CI runners (a known just.systems install-script flake).Fix
Replace the curl|bash step with the SHA-pinned
extractions/setup-just@v4.0.0action — the same authenticated, cached install already used elsewhere in_required.yml(line ~378). No behavioral change other than a reliablejuston PATH.Verification
justinvocations are unaffected.lintshould now pass, turning main green and unblocking chore(ci): remove NATIVE=1 path; migrate all CI to Podman containers (#501) #568.🤖 Generated with Claude Code