From 4d12ea25125333cdeba77c31b67cf580d86e8695 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Sat, 15 Aug 2026 07:51:51 -0700 Subject: [PATCH] ci: run actionlint from the prebuilt image (16s -> ~2s) Co-Authored-By: Claude Fable 5 --- .github/workflows/actionlint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 2ca8d10a7..a0692372a 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -18,4 +18,6 @@ jobs: runs-on: ubicloud-standard-8 steps: - uses: actions/checkout@v4 - - uses: rhysd/actionlint@v1.7.11 + # Pull the prebuilt image instead of rhysd/actionlint@v1.7.11 (a Docker + # action that rebuilt from source every run: 16s of a 44s job for 1s of lint). + - run: docker run --rm -v "$PWD:/repo" -w /repo rhysd/actionlint:1.7.11 -color