From ef5e76e55fff767d7e0d319042a5f7561c908ce0 Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Tue, 12 Nov 2024 20:06:43 +1100 Subject: [PATCH] actionlint: suppress zizmor's exit code Update to match 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 7f7cb232c8cf..f6b30e040d84 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -55,7 +55,9 @@ jobs: rmdir "$HOMEBREW_TAP_REPOSITORY" ln -vs "$GITHUB_WORKSPACE" "$HOMEBREW_TAP_REPOSITORY" - - 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