fix: set GOTOOLCHAIN=auto in Avenger and hourly-ci-cleaner workflows - #49461
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix missing required tool go1.26.5 in Avenger workflow
fix: set GOTOOLCHAIN=auto in Avenger and hourly-ci-cleaner workflows
Aug 1, 2026
pelikhan
marked this pull request as ready for review
August 1, 2026 05:30
Contributor
There was a problem hiding this comment.
🟢 Ready to approve
The environment variable propagates into the AWF sandbox, and the required download domains are already allowed.
This review doesn't count toward merge requirements. Sign up for the private preview to control whether Copilot approvals count.
Pull request overview
Enables automatic Go toolchain downloads so CI-repair workflows can satisfy the repository’s Go version requirement.
Changes:
- Sets
GOTOOLCHAIN=autoin both workflow sources. - Recompiles generated workflow lock files.
File summaries
| File | Description |
|---|---|
.github/workflows/avenger.md |
Enables automatic Go toolchain selection. |
.github/workflows/avenger.lock.yml |
Compiles the new environment variable. |
.github/workflows/hourly-ci-cleaner.md |
Enables automatic Go toolchain selection. |
.github/workflows/hourly-ci-cleaner.lock.yml |
Compiles the new environment variable. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 0
- Review effort level: Balanced
We're testing this review assessment. Please use 👍 or 👎 to tell us if it's correct.
Contributor
|
🎉 This pull request is included in a new release. Release: |
This was referenced Aug 1, 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.
The AWF sandbox mounts
/usr/bin/go(Go 1.25.12) withGOTOOLCHAIN=local, butgo.modrequires Go ≥ 1.26.5. This causes allmake fmt/lint/test-unit/update-wasm-goldeninvocations to fail immediately withgo: go.mod requires go >= 1.26.5 (running go 1.25.12; GOTOOLCHAIN=local).Changes
avenger.md/hourly-ci-cleaner.md— addenv: GOTOOLCHAIN: autoto workflow frontmatter; both workflows already allow thegonetwork group (proxy.golang.org,sum.golang.org,go.dev), so the toolchain download path is unblocked*.lock.yml— recompiled to reflect the new env var