fix(_pulumi-wif): pin mise to known-good version (default 2026.5.18)#107
Merged
Conversation
mise 2026.6.x (installed by jdx/mise-action when unpinned) mis-verifies pulumi's linux-x64 aqua checksum, breaking every consumer's pulumi CI: "verified checksum file digest does not match existing checksum for pulumi-v<ver>-linux-x64.tar.gz" pulumi's own signed checksum matches the asset, and mise 2026.5.x installs it fine -- so this is a mise 2026.6 regression, not a pulumi/registry issue. Add an 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.
emmanuelm41
pushed a commit
that referenced
this pull request
Jun 23, 2026
…108) 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
When
jdx/mise-actioninstalls mise unpinned, it pulls mise 2026.6.x, which mis-verifies pulumi's linux-x64 aqua checksum. Every consumer'spulumiCI fails atSetup mise:Verified it's a mise regression, not pulumi/registry:
pulumi-v3.247.0-linux-x64.tar.gzhashes to1924bbd…= exactly pulumi's signed checksum.aqua.baked_registry=falsestill fails).This is fleet-wide: any repo using
_pulumi-wifbreaks the next time its pulumi CI runs (e.g. kunobi-iac is failing today; others just haven't re-run since pulumi 3.247.0 dropped on Jun 18).Fix
Add an optional
mise_versioninput (default2026.5.18, last known-good line) and pass it tojdx/mise-action'sversion.Backward compatible — existing callers need no change and automatically get the working pin; any repo can override via the new input. Remove the pin (set
mise_version: "") once mise ships a fixed release.