Codacy Security Scan #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codacy Security Scan | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
schedule: | |
- cron: "37 10 * * 1" | |
jobs: | |
codacy-security-scan: | |
name: Codacy Security Scan | |
runs-on: ubuntu-latest | |
steps: | |
- name: π₯ Install Github Action Checkout | |
uses: actions/checkout@v2 | |
- name: π Run Codacy Analysis CLI | |
uses: codacy/[email protected] | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
verbose: true | |
output: results.sarif | |
format: sarif | |
gh-code-scanning-compat: true | |
max-allowed-issues: 2147483647 | |
- name: π€ Upload SARIF results file | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: results.sarif |