From 60e164401409967513aab5e9d83af10a2ad26663 Mon Sep 17 00:00:00 2001 From: Nano Taboada Date: Fri, 18 Apr 2025 13:54:24 -0300 Subject: [PATCH] chore(ci): switch to default setup for CodeQL scanning --- .github/workflows/codacy.yml | 49 ------------------------------------ 1 file changed, 49 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 87b61ea..0000000 --- a/.github/workflows/codacy.yml +++ /dev/null @@ -1,49 +0,0 @@ -# This workflow uses actions not certified by GitHub. They are provided by a -# third-party and governed by separate terms of service, privacy policy, and -# support documentation. This workflow checks out code, performs a Codacy -# security scan, and integrates the results with GitHub Advanced Security code -# scanning feature. For more info on the Codacy Security Scan action usage and -# parameters, see: https://github.com/codacy/codacy-analysis-cli-action. -# For more info on Codacy Analysis CLI in general, see: -# https://github.com/codacy/codacy-analysis-cli. - -name: Codacy Security Scan - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - schedule: - - cron: '0 21 * * 5' # Runs at 21:00, only on Friday - -permissions: - contents: read - -jobs: - codacy-security-scan: - permissions: - contents: read - security-events: write - actions: read - name: Codacy Security Scan - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - # Execute Codacy Analysis CLI and generate a SARIF output with the security - # issues identified during the analysis - - 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 - gh-code-scanning-compat: true - max-allowed-issues: 2147483647 - # Upload the SARIF file generated in the previous step - - name: Upload SARIF results file - uses: github/codeql-action/upload-sarif@v3 - with: - sarif_file: results.sarif