[OSDC] Pin full helm patch version in mise.toml#689
Open
huydhn wants to merge 1 commit into
Open
Conversation
mise (2026.5.x) resolves helm via the aqua backend, which no longer expands a bare minor version to a concrete release tag. "3.14" was templated literally into the asset name (helm-3.14-darwin-arm64.tar.gz, missing the v prefix and patch), producing a 404 against get.helm.sh and breaking 'just list' and any recipe that installs tools. Pin the full patch (3.14.4) so the asset resolves to helm-v3.14.4-darwin-arm64.tar.gz. Stays on the intended 3.14 minor.
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
just list(and any recipe that triggers a tool install) fails with:mise (2026.5.x) resolves
helmthrough the aqua backend, which no longer expands a bare minor version to a concrete release tag. The"3.14"string is templated literally into the asset name —helm-3.14-darwin-arm64.tar.gz, missing both thevprefix and the patch number — which does not exist onget.helm.sh, hence the 404.Fix
Pin the full patch version
3.14.4so the asset resolves correctly tohelm-v3.14.4-darwin-arm64.tar.gz. This stays on the intended 3.14 minor — not a version bump.Verification
Note
kubectl = "1.34"andopentofu = "1.7"are pinned the same bare-minor way and may hit the same 404 the next time they (re)install. Left unchanged here to keep this fix focused; happy to follow up if desired.