From 9a3a4f30d25e9b3279341c8ddea709762ab21a10 Mon Sep 17 00:00:00 2001 From: Paul Macdonnell Date: Sun, 14 Jun 2026 17:25:03 +1000 Subject: [PATCH] fix(sbom): use mise install script instead of GitHub releases download jdx/mise-action with fetch_from_github: true (default) downloads the mise binary directly from GitHub releases. When a new mise version is just cut, the release assets can 404 briefly while being published, breaking CI. Switching to fetch_from_github: false uses the mise install script which pulls from the mise CDN (mise.jdx.dev), which is available immediately. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/sbom.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sbom.yml b/.github/workflows/sbom.yml index 3018876..397d496 100644 --- a/.github/workflows/sbom.yml +++ b/.github/workflows/sbom.yml @@ -128,6 +128,8 @@ jobs: - name: Install tools via mise uses: jdx/mise-action@v4 + with: + fetch_from_github: false - name: Download the SBoM Artifact uses: actions/download-artifact@v8.0.1