fix: pass GITHUB_TOKEN to mise-action to fix CI failures#9
Merged
RoyalPineapple merged 3 commits intomainfrom Apr 2, 2026
Merged
fix: pass GITHUB_TOKEN to mise-action to fix CI failures#9RoyalPineapple merged 3 commits intomainfrom
RoyalPineapple merged 3 commits intomainfrom
Conversation
Unauthenticated GitHub API requests from mise-action hit rate limits (403 Forbidden), causing all CI jobs to fail when installing tools (tuist, SwiftFormat). Passing the built-in GITHUB_TOKEN raises the rate limit and resolves the issue. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
GitHub API transient 500/503 errors cause mise's SLSA provenance and artifact attestation verification to fail during tool installation. Disable these checks in CI for both the github and aqua backends to make builds resilient to GitHub API instability. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The 500/503 errors were transient GitHub API issues, not a misconfiguration. Disabling supply chain security verification permanently is the wrong fix for a temporary outage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
4 tasks
robmaceachern
approved these changes
Mar 31, 2026
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.
CI is broken on main — this fixes it
All CI jobs on
mainare currently failing with 403 errors becausemise installmakes unauthenticated GitHub API requests that hit rate limits.This passes
GITHUB_TOKEN(automatically provided by GitHub Actions) to all threejdx/mise-actionsteps so mise uses authenticated requests with a much higher rate limit. No new secrets or configuration needed —secrets.GITHUB_TOKENis built-in.Failing jobs on main
development-tests (UnitTests)— job 69365490794samples— job 69365490828Error from logs:
Test plan
development-tests,samples,swiftformat) pass after merge🤖 Generated with Claude Code