From a8901e6d6eeb433fdbd54b98f33c96c297994284 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Wed, 8 Oct 2025 13:58:40 +0200 Subject: [PATCH] disable sarif generation, so we at least get a result --- .github/workflows/codacy-analysis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 5e84db5e..920224d3 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -36,14 +36,14 @@ jobs: # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository # You can also omit the token and run the tools that support default configurations project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} - verbose: true - output: results.sarif - format: sarif + # verbose: true + # output: results.sarif + # format: sarif # Adjust severity of non-security issues - gh-code-scanning-compat: true + # 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 - max-allowed-issues: 2147483647 + # max-allowed-issues: 2147483647 # Upload the SARIF file generated in the previous step # disabled due to: https://github.com/codacy/codacy-analysis-cli-action/issues/142