From 7aa77f8540baa990ed85ce54634da8d8869382aa Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Thu, 19 Feb 2026 12:51:01 -0500 Subject: [PATCH] fix: pin actionlint to v1.7.11 release URL The /latest/download/ URL redirects to the newest release, but the filename was hardcoded to 1.7.7. Pin both tag and filename to avoid breakage on future releases. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/lint-infra.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-infra.yml b/.github/workflows/lint-infra.yml index b2c8a19..5fc9b8f 100644 --- a/.github/workflows/lint-infra.yml +++ b/.github/workflows/lint-infra.yml @@ -33,7 +33,7 @@ jobs: - name: Install actionlint run: | - curl -sL https://github.com/rhysd/actionlint/releases/latest/download/actionlint_1.7.7_linux_amd64.tar.gz | tar xz + curl -sL https://github.com/rhysd/actionlint/releases/download/v1.7.11/actionlint_1.7.11_linux_amd64.tar.gz | tar xz sudo mv actionlint /usr/local/bin/ - name: Run actionlint