SAST Snyk Code #29
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
| name: SAST Snyk Code | |
| on: | |
| schedule: | |
| - cron: '23 14 * * 6' | |
| workflow_dispatch: | |
| jobs: | |
| security: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: snyk/actions/setup@master | |
| - name: Generate code vulnerability report | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| run: | | |
| snyk code test --project-name="${{ github.repository }}" --report ${{ github.workspace }} | |
| continue-on-error: true |