mise 2024.12.24 breaks multiple packages
mise 2024.12.24, which was upgraded by renovate in !857 (merged), breaks multiple tools.
Known to be broken:
checkov
protoc-gen-go-grpc
This results in the validate_mise_tool_versions
job failing if any of the broken tools are used in the project. For example:
- checkov: https://gitlab.com/gitlab-com/gl-infra/platform/runway/runwayctl/-/jobs/8985685894
- protoc-gen-go-grpc: https://gitlab.com/gitlab-com/gl-infra/platform/runway/example-service/-/jobs/8949417550
Work-around: add the following to your .gitlab-ci.yml
file:
validate_mise_tool_versions:
image: ${CI_REGISTRY}/gitlab-com/gl-infra/common-ci-tasks/mise:v2.47.0
This pins mise to v2.47.0
(upstream version: 2024.11.4
).
Upstream bug report: https://github.com/jdx/mise/discussions/4247