From 4df8abb6be74c7146a482650bc15d1a29cfe05a7 Mon Sep 17 00:00:00 2001 From: Rain Date: Sun, 21 Apr 2024 22:43:19 -0700 Subject: [PATCH] [ci] switch to explicit hashes for taiki-e/install-action The renovate/pin-dependencies task was failing on this. --- .github/workflows/coverage.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 50d7fa060ef..f9a2224c3e6 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -25,9 +25,13 @@ jobs: - uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2 - name: Install latest nextest release - uses: taiki-e/install-action@nextest + uses: taiki-e/install-action@a94d7ba8955e0861119ed8d3fddb8823ef7a97a8 # v2 + with: + tool: nextest - name: Install cargo-llvm-cov - uses: taiki-e/install-action@cargo-llvm-cov + uses: taiki-e/install-action@a94d7ba8955e0861119ed8d3fddb8823ef7a97a8 # v2 + with: + tool: cargo-llvm-cov - name: Collect coverage data # Generate separate reports for nextest and doctests, and combine them.