From c9c210b8cfc91841523f08ad3958788184fba8ae Mon Sep 17 00:00:00 2001 From: Takashi Iwamoto Date: Wed, 15 Apr 2026 17:00:33 +0900 Subject: [PATCH] Simplify mise min_version to hard-only The soft/hard split turned out to be overkill: CI already pins the mise version via MISE_VERSION (tracked by the githubActionsVersions preset), so .mise.toml only needs the real compatibility floor. Drop the soft side and the custom regex manager that chased it. Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Takashi Iwamoto --- .github/renovate.json | 10 ---------- .mise.toml | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 74f0287..44e9679 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -15,16 +15,6 @@ "enabled": true, "minimumReleaseAge": null }, - "customManagers": [ - { - "customType": "regex", - "managerFilePatterns": ["/^\\.mise\\.toml$/"], - "matchStrings": ["soft\\s*=\\s*\"(?[^\"]+)\""], - "depNameTemplate": "jdx/mise", - "datasourceTemplate": "github-releases", - "extractVersionTemplate": "^v?(?.+)$" - } - ], "packageRules": [ { "description": "Disable automerge for major updates", diff --git a/.mise.toml b/.mise.toml index 4967396..4a3e44e 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,4 +1,4 @@ -min_version = { hard = "2026.4.8", soft = "2026.4.9" } +min_version = "2026.4.8" [tools] actionlint = "1.7.12"