From 807938b606faa1df46983ed528eb2542aad633e1 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 20 Aug 2026 14:19:42 -0400 Subject: [PATCH] Use taiki-e/install-action for typos-cli The benefit is that the typos-cli executable is pulled from a Github Release and will not have to be compiled occasionally or cached all the rest of the time. Signed-off-by: mulhern --- .github/workflows/reusable_general.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/reusable_general.yml b/.github/workflows/reusable_general.yml index 04eec05..1b51e68 100644 --- a/.github/workflows/reusable_general.yml +++ b/.github/workflows/reusable_general.yml @@ -20,13 +20,9 @@ jobs: persist-credentials: false - name: Install dependencies run: dnf install -y clang curl make yamllint - - uses: actions-rust-lang/setup-rust-toolchain@v1 + - uses: taiki-e/install-action@v2 with: - components: cargo - toolchain: stable - - uses: baptiste0928/cargo-install@v3 - with: - crate: typos-cli + tool: typos-cli - name: Run typos check run: make -f Makefile check-typos - name: Run yamllint check