From bc9e2a32fb05559e2bf4c7906a88af99437fb5f3 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sat, 16 May 2026 03:43:05 +0000 Subject: [PATCH] fix(pr-validation): replace curl with wget for actionlint install The act runner container does not have curl in PATH. Using wget instead fixes the CI validate check. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/pr-validation.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-validation.yaml b/.github/workflows/pr-validation.yaml index 73c2b7f..ead8a29 100644 --- a/.github/workflows/pr-validation.yaml +++ b/.github/workflows/pr-validation.yaml @@ -21,7 +21,7 @@ jobs: run: | ACTIONLINT_VERSION="1.7.7" mkdir -p "$HOME/.local/bin" - curl -fsSL "https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VERSION}/actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" \ + wget -qO- "https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VERSION}/actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" \ | tar -xz -C "$HOME/.local/bin" actionlint echo "$HOME/.local/bin" >> "$GITHUB_PATH"