From 6e8b523420e7f2601e7709448da57ffbdcec0b6f Mon Sep 17 00:00:00 2001 From: Florent Benoit Date: Wed, 22 Apr 2026 22:07:53 +0200 Subject: [PATCH 1/2] chore(mise): replace ubi: prefix by github: prefix when executing the command `mise run vm:setup` I have an error message mise ERROR Failed to install ubi:EmbarkStudios/cargo-about@0.8.4: HTTP request to https://api.github.com/repos/EmbarkStudios/cargo-about/releases/tags/v0.8.4 returned an error status ubi: is assuming the tag has a v prefix but here the tag has not the prefix https://github.com/EmbarkStudios/cargo-about/releases/tag/0.8.4 github: allows to use github: prefix so that the tag has not the 'v' prefix mise reports that ubi is deprecated and that github backend should be use instead so replace all ubi prefix as well Signed-off-by: Florent Benoit --- mise.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mise.toml b/mise.toml index 785db6975..294d67163 100644 --- a/mise.toml +++ b/mise.toml @@ -20,9 +20,9 @@ kubectl = "1.35.1" uv = "0.10.2" protoc = "29.6" helm = "4.1.4" -"ubi:mozilla/sccache" = { version = "0.14.0", matching = "sccache-v" } -"ubi:anchore/syft" = { version = "1.42.3", matching = "syft_" } -"ubi:EmbarkStudios/cargo-about" = "0.8.4" +"github:mozilla/sccache" = { version = "0.14.0" } +"github:anchore/syft" = { version = "1.42.3" } +"github:EmbarkStudios/cargo-about" = { version = "0.8.4", version_prefix = "" } zig = "0.14.1" [env] From 7d4a0b822d2fa11a62508750530ace424d7154b4 Mon Sep 17 00:00:00 2001 From: Piotr Mlocek Date: Thu, 23 Apr 2026 10:53:11 -0700 Subject: [PATCH 2/2] Update mise.toml --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 294d67163..6f855fcf0 100644 --- a/mise.toml +++ b/mise.toml @@ -20,7 +20,7 @@ kubectl = "1.35.1" uv = "0.10.2" protoc = "29.6" helm = "4.1.4" -"github:mozilla/sccache" = { version = "0.14.0" } +"ubi:mozilla/sccache" = { version = "0.14.0", matching = "sccache-v" } "github:anchore/syft" = { version = "1.42.3" } "github:EmbarkStudios/cargo-about" = { version = "0.8.4", version_prefix = "" } zig = "0.14.1"