Snyk Scan #104
This file contains hidden or 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
| # This workflow sets up Snyk scans | |
| name: Snyk Scan | |
| on: | |
| push: | |
| branches: ["main" ] | |
| pull_request: | |
| branches: ["main"] | |
| schedule: # Run snyk scan daily at midnight | |
| - cron: '0 0 * * *' | |
| permissions: | |
| contents: read | |
| jobs: | |
| snyk: | |
| permissions: | |
| contents: read # for actions/checkout to fetch code | |
| security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
| actions: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Snyk IaC report vulnerabilities | |
| uses: snyk/actions/iac@v1 | |
| continue-on-error: true # To make sure that SARIF upload gets called | |
| env: | |
| SNYK_TOKEN: ${{ secrets.FD_CICD_SYNK_TOKEN }} | |
| with: | |
| args: --sarif-file-output=snyk.sarif | |
| - name: Snyk IaC gatekeeper | |
| uses: snyk/actions/iac@v1 | |
| env: | |
| SNYK_TOKEN: ${{ secrets.FD_CICD_SYNK_TOKEN }} | |
| with: | |
| args: | |
| --sarif-file-output=snyk.sarif | |
| --policy-path=.snyk | |
| --severity-threshold=high # Forces fail on high-severity vulnerabilities |