fix(_checks-ts): pin mise to known-good version (mirror #107)#108
Merged
Conversation
Mirror of #107 for the TS checks workflow. mise 2026.6.x (installed by jdx/mise-action when unpinned) mis-verifies pulumi's linux-x64 aqua checksum, breaking CI for any consumer whose mise.toml lists pulumi: "verified checksum file digest does not match existing checksum for pulumi-v<ver>-linux-x64.tar.gz" mise 2026.5.x installs it fine -- a mise 2026.6 regression, not a pulumi/registry issue. Add the same optional `mise_version` input (default 2026.5.18, last known-good) passed to mise-action's `version`. Backward compatible: existing callers need no change and get the working pin automatically; any repo can override. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
CI-tsjobs fail atmise installfor any consumer whosemise.tomllistspulumi(e.g.infra-iac,kunobi-iac):Root cause
jdx/mise-action, when unpinned, installs the latest mise. mise 2026.6.x (2026.6.12, released 2026-06-22) mis-verifies Pulumi's linux-x64 aqua checksum — confirmed against the last green run, which used mise 2026.6.11 and installed Pulumi fine. aqua checksum verification is always-on and can't be disabled, so the only fix is pinning mise to a known-good release. This is a mise 2026.6 regression, not a Pulumi/registry issue.#107 already fixed this for
_pulumi-wif.yaml. This PR applies the same fix to_checks-ts.yaml, which was missed and also runsmise install.Change
Add the optional
mise_versioninput (default2026.5.18, last known-good) and pass it tomise-action'sversion. Backward compatible — existing callers get the working pin automatically and can override per-repo. Revert once the mise regression is fixed upstream.Note
Consumers (
infra-iac,kunobi-iac) currently pin@v5, which predates both this fix and #107. They must bump theiruses:ref to the tag containing these fixes for CI to recover.🤖 Generated with Claude Code