From bd873865ea5e3cbf547378778373089e5575abc8 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 28 Aug 2025 22:49:32 +0000 Subject: [PATCH] fix: update taiki-e/install-action to v2 The CI/CD pipeline was failing with a 403 error when trying to download nextest and cargo-llvm-cov. This was caused by an outdated version of the taiki-e/install-action. This commit updates the action to v2 to resolve the issue. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5db50b7fc..0fee96f70 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -73,7 +73,7 @@ jobs: cd ./bin/reflective_loader/ cargo +nightly-2025-01-31 build --release -Z build-std=core,compiler_builtins -Z build-std-features=compiler-builtins-mem - name: Install latest nextest & cargo-llvm-cov release - uses: taiki-e/install-action@v2.52.7 + uses: taiki-e/install-action@v2 with: tool: nextest,cargo-llvm-cov - name: 🔎 Run tests