From 8895f0cd5855774e2c9c152f23022d5a871d59c0 Mon Sep 17 00:00:00 2001 From: bashonly Date: Sun, 2 Jun 2024 16:29:10 -0500 Subject: [PATCH] do u even ubuntu Authored by: bashonly --- .github/workflows/action-lint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action-lint.yml b/.github/workflows/action-lint.yml index 013147a6fa8a..bcc4a3af5a1a 100644 --- a/.github/workflows/action-lint.yml +++ b/.github/workflows/action-lint.yml @@ -16,12 +16,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install requirements + id: install-reqs run: | sudo apt update sudo apt -y install shellcheck - go install github.com/rhysd/actionlint/cmd/actionlint@latest + bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) - name: Run actionlint env: SHELLCHECK_OPTS: -e SC1090,SC2034,SC2078 run: | - actionlint -color + ${{ steps.install-reqs.outputs.executable }} -color