From 6816e93c5471686ef4922f68376b8e69305fe8fe Mon Sep 17 00:00:00 2001 From: Yordis Prieto Date: Wed, 1 Jul 2026 21:24:17 -0400 Subject: [PATCH] ci(semconv): skip full toolchain install for semconv check The semconv job only needs Weaver (already installed by mise-action), but 'mise run' auto-installs every tool in .mise.toml first, compiling the source-built cargo tools from scratch each run because that install falls outside mise-action's Weaver-scoped cache. Signed-off-by: Yordis Prieto --- .github/workflows/ci-semconv.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-semconv.yml b/.github/workflows/ci-semconv.yml index 1853d5e23..0093ff57d 100644 --- a/.github/workflows/ci-semconv.yml +++ b/.github/workflows/ci-semconv.yml @@ -32,4 +32,4 @@ jobs: install_args: ubi:open-telemetry/weaver - name: Check semconv registry and enforce naming policies - run: mise run semconv:check + run: mise run --skip-tools semconv:check