[deckhouse-cli] Run go mod tidy to fix the v0.30.22 build - #461
Merged
Conversation
Signed-off-by: Artem Kuleshov <artem.kuleshov@flant.com>
Glitchy-Sheep
approved these changes
Aug 28, 2026
This was referenced Aug 30, 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.
Problem
v0.30.22 does not build. Every
go buildtarget fails with:The x/image bump in #460 was applied with
go mod editbecausego mod tidycould not run without access to theflant.internalreplacement ofgithub.com/hashicorp/vault. That missed the transitive cascade:golang.org/x/textv0.41.0 requiresgolang.org/x/toolsv0.48.0 andgolang.org/x/modv0.38.0, while go.mod still pinned v0.47.0 and v0.37.0, so the recorded requirements no longer cover the build list.Fallout: the v0.30.22 Release workflow failed, so the tag has no published binaries, and deckhouse release-1.73 — which pins d8CliVersion v0.30.22 — fails both
Build FE(builds d8 from the tag) andGo Generate(downloads the release binary, 404).Fix
go mod tidyoutput, nothing hand-written:No package versions change beyond what x/text v0.41.0 already required, and the go directive stays at 1.25.6.
Tests
go mod tidyruns clean with the private module resolvedgo build ./cmd/d8with the release tag set (clionly dfrunsecurity dfrunnetwork dfrunmount dfssh containers_image_openpgp) succeeds; on v0.30.22 the same command fails with the error aboveThis needs a v0.30.23 release so deckhouse release-1.73 can move its pin off the broken tag.