ci(e2e-bot): build with go.mod's Go version, not pinned 1.22#3731
Merged
Conversation
The e2e-bot pinned go-version: '1.22' with setup-go's GOTOOLCHAIN=local, but
go.mod now requires go >= 1.25.0, so the very first step ("Build harness +
fallback agent from the default branch") fails with:
go: go.mod requires go >= 1.25.0 (running go 1.22.12; GOTOOLCHAIN=local)
That breaks every /e2e invocation before it can build anything. Every other
workflow (ci.yml, release-*.yml) already uses go-version-file: go.mod; mirror
that here so the bot tracks the repo's Go version and never goes stale again.
SuMuxi66
pushed a commit
to SuMuxi66/DeepSeek-Reasonix
that referenced
this pull request
Jun 10, 2026
…e#3731) The e2e-bot pinned go-version: '1.22' with setup-go's GOTOOLCHAIN=local, but go.mod now requires go >= 1.25.0, so the very first step ("Build harness + fallback agent from the default branch") fails with: go: go.mod requires go >= 1.25.0 (running go 1.22.12; GOTOOLCHAIN=local) That breaks every /e2e invocation before it can build anything. Every other workflow (ci.yml, release-*.yml) already uses go-version-file: go.mod; mirror that here so the bot tracks the repo's Go version and never goes stale again.
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
The
/e2ebot is broken: its first step ("Build harness + fallback agent from the default branch") fails becausee2e-bot.ymlpinsgo-version: '1.22'(with setup-go'sGOTOOLCHAIN=local) whilego.modnow requiresgo >= 1.25.0:This aborts every
/e2erun before it can build the harness/agent (observed on a/e2eagainst #3586).Fix
Use
go-version-file: go.mod, exactly likeci.ymland therelease-*.ymlworkflows already do. The bot then tracks the repo's Go version automatically and won't go stale on the next bump.Test plan
/e2erun after merge (the bot's workflow is read from the default branch).