From 664b27c4cac791b780cb324984bad699dd9ca19d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Wed, 10 Jul 2024 23:49:48 +0200 Subject: [PATCH] Do not fail workflow on static analysis results upload failures When Clippy finds lints, it already aborts the workflow. No double failure is needed. --- .github/workflows/oxipng.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/oxipng.yml b/.github/workflows/oxipng.yml index e606ef14..4f20302d 100644 --- a/.github/workflows/oxipng.yml +++ b/.github/workflows/oxipng.yml @@ -156,6 +156,7 @@ jobs: - name: Upload analysis results to GitHub uses: github/codeql-action/upload-sarif@v3 if: always() && matrix.target == 'x86_64-unknown-linux-gnu' + continue-on-error: true with: sarif_file: clippy-results.sarif category: clippy