diff --git a/.github/workflows/codacy-analysis.yaml b/.github/workflows/codacy-analysis.yaml index a214d0d..5d28579 100644 --- a/.github/workflows/codacy-analysis.yaml +++ b/.github/workflows/codacy-analysis.yaml @@ -2,9 +2,9 @@ name: Codacy Security Scan on: push: - branches: ["master", "main"] + branches: [ "master", "main" ] pull_request: - branches: ["master", "main"] + branches: [ "master", "main" ] jobs: codacy-security-scan: @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@master + uses: actions/checkout@main - name: Run Codacy Analysis CLI uses: codacy/codacy-analysis-cli-action@master @@ -24,10 +24,10 @@ jobs: # 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 - + \ No newline at end of file