diff --git a/.github/workflows/!main.yml b/.github/workflows/!main.yml index ba9afb1a502..0592f940005 100644 --- a/.github/workflows/!main.yml +++ b/.github/workflows/!main.yml @@ -12,11 +12,6 @@ jobs: DOCKER_USER: ${{ secrets.DOCKER_USER }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - codacy: - uses: ./.github/workflows/codacy.yml - secrets: - CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} - coverage: uses: ./.github/workflows/coverage.yml with: diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml deleted file mode 100644 index 634b63a3432..00000000000 --- a/.github/workflows/codacy.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Codacy Security Scan - -on: - workflow_call: - secrets: - CODACY_PROJECT_TOKEN: - required: true - -permissions: - contents: read - -jobs: - analyse: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Run Codacy Analysis CLI - uses: codacy/codacy-analysis-cli-action@master - with: - project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} - verbose: true - 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 handover 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 - uses: github/codeql-action/upload-sarif@main - with: - sarif_file: results.sarif