From 406d5f306fd044f46ecc7f34762562a73bb1473a Mon Sep 17 00:00:00 2001 From: Austen Stone Date: Wed, 20 Nov 2024 17:13:35 -0500 Subject: [PATCH] Delete .github/workflows/codacy.yml --- .github/workflows/codacy.yml | 39 ------------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/codacy.yml diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml deleted file mode 100644 index 1f896d94..00000000 --- a/.github/workflows/codacy.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Codacy Security Scan - -on: - push: - branches: [ "master", "main" ] - pull_request: - branches: [ "master", "main" ] - -jobs: - codacy-security-scan: - name: Codacy Security Scan - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@main - - - name: Run Codacy Analysis CLI - uses: codacy/codacy-analysis-cli-action@master - with: - output: results.sarif - format: sarif - # Adjust severity of non-security issues - gh-code-scanning-compat: true - # Force 0 exit code to allow SARIF file generation - # This will hand over control about PR rejection to the GitHub side - max-allowed-issues: 2147483647 - tool: issues - - # archive the SARIF file generated in the previous step - - name: Archive SARIF results file - uses: actions/upload-artifact@v4 - with: - path: results.sarif - - # Upload the SARIF file generated in the previous step - - name: Upload SARIF results file - uses: github/codeql-action/upload-sarif@main - with: - sarif_file: results.sarif