From 5a805bd73b146c7d3a4eeefc745bc677bd8f5fb7 Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Tue, 12 Nov 2024 20:05:36 +1100 Subject: [PATCH] actionlint: suppress zizmor's exit code Update to match changes in - https://github.com/Homebrew/brew/pull/18753 --- .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 14648582..44e84cc3 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -45,7 +45,9 @@ jobs: with: persist-credentials: false - - run: zizmor --format sarif . >results.sarif + - run: | + # NOTE: exit code intentionally suppressed here + zizmor --format sarif . > results.sarif || true - name: Upload SARIF file uses: actions/upload-artifact@v4