From 0ee561d43f204954009168e70e3ea30372b8f7bc Mon Sep 17 00:00:00 2001 From: jpoehnelt-bot Date: Mon, 9 Mar 2026 15:40:29 -0600 Subject: [PATCH] fix(ci): add missing tool input to taiki-e/install-action for cargo-llvm-cov When actions were SHA-pinned in #341, the tool name was lost. The original uses: taiki-e/install-action@cargo-llvm-cov passed the tool name as the tag. After pinning to a SHA, the tool input must be specified explicitly via with: tool: cargo-llvm-cov. --- .github/workflows/coverage.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c779bdd..4e1b323 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -40,6 +40,8 @@ jobs: - name: Install cargo-llvm-cov uses: taiki-e/install-action@a37010ded18ff788be4440302bd6830b1ae50d8b # cargo-llvm-cov + with: + tool: cargo-llvm-cov - name: Generate code coverage run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info