From 1060db9be714599a67e4767afbeadb45206aed6e Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 19 Sep 2022 20:31:08 -0600 Subject: [PATCH] Updated .github/workflows/codacy-analysis.yml --- .github/workflows/codacy-analysis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 4b5086e6f04..f4b53a22716 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -28,6 +28,7 @@ jobs: # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI + continue-on-error: true uses: codacy/codacy-analysis-cli-action@v4.1.0 with: # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository @@ -39,11 +40,12 @@ jobs: # Adjust severity of non-security issues gh-code-scanning-compat: true # Force 0 exit code to allow SARIF file generation - # This will handover control about PR rejection to the GitHub side + # This will hand over control about PR rejection to the GitHub side max-allowed-issues: 2147483647 # Upload the SARIF file generated in the previous step - name: Upload SARIF results file + continue-on-error: true uses: github/codeql-action/upload-sarif@v2 with: sarif_file: results.sarif