fix(security-bundle): the called-workflow fetch carries the job token - #84
Merged
Merged
Conversation
GitHub throttles anonymous git per source address and the fleet's runners share four addresses. Under a burst on 2026-09-02 (09:25Z-09:40Z, again at 10:02Z) the anonymous fetch of this workflow's own implementation answered 401 -- "could not read Username for 'https://github.com'", "expected flush after ref listing" -- and a security gate failed for its own bootstrap in two projects; the same fetch with a token went through. The earlier reading of that failure as a protocol-v2 fault was wrong. The fetch now sends the job's token as basic x-access-token, the way actions/checkout does; the repository is public, the token adds identity, not access. The retry stays as a belt. Claude-Session: https://claude.ai/code/session_0128syXKxAGCfJGRDxUUNQXp
rldyourmnd
enabled auto-merge
September 2, 2026 10:05
rldyourmnd
deleted the
fix/called-workflow-fetch-carries-the-job-token
branch
September 2, 2026 10:06
17 tasks
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.
GitHub throttles anonymous git per source address, and the fleet's runners share four addresses. Under a burst on 2026-09-02 (09:25Z to 09:40Z, again at 10:02Z) the anonymous fetch of this workflow's own implementation answered 401 (
could not read Username for 'https://github.com',expected flush after ref listing) and the security gate failed for its own bootstrap in two projects (setup-systems run 33615927721, both attempts). The same fetch with a token went through in the same window. The earlier reading of the failure as a protocol-v2 fault was wrong; the retry loop stays as a belt.The fetch now sends
${{ github.token }}as basicx-access-token, the way actions/checkout does. The repository is public; the token adds an identity, not access, so no caller input or secret is needed.https://claude.ai/code/session_0128syXKxAGCfJGRDxUUNQXp