CI-Actions pass #35
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: Sec3 Pro Audit | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Check-out the repository | |
uses: actions/checkout@v2 | |
- name: Sec3 Pro Audit | |
continue-on-error: false # set to true if you don't want to fail jobs | |
uses: sec3dev/pro-action@v1 | |
with: | |
sec3-token: ${{ secrets.SEC3_TOKEN }} | |
path: programs | |
- name: Upload Sarif Report | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: sec3-report.sarif |