Pin terraform-config-inspect version - #2197
Merged
Merged
Conversation
mise now applies a 24h minimum_release_age filter by default. This module has no tagged releases, only commit pseudo-versions, so "latest" resolves to nothing whenever the newest upstream commit is under 24h old, breaking Terraform CI. Pinning an exact version bypasses the filter and makes CI reproducible.
There was a problem hiding this comment.
Pull request overview
Pins the terraform-config-inspect Go tool in .mise.toml to an explicit Go pseudo-version to avoid mise’s default minimum_release_age filter breaking CI when latest points at a very recent upstream commit.
Changes:
- Replace
latestforgo:github.com/hashicorp/terraform-config-inspectwith a pinned commit pseudo-version. - Add inline documentation explaining the CI failure mode and where to find the current upstream “@latest” pseudo-version.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
whi-tw
approved these changes
Jul 10, 2026
whi-tw
left a comment
Contributor
There was a problem hiding this comment.
alternative approach might be to use use the minimum_release_age_excludes for this dependency, but this way at least we're pinned to something vaguely sensible.
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.
mise now applies a 24h minimum_release_age filter by default, which has broken CI for this repository.
This module has no tagged releases, so "latest" resolves to nothing whenever the newest upstream commit is under 24h old, breaking Terraform CI. Pinning an exact version bypasses the filter and makes CI reproducible.