ZARN SAST #10
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: ZARN SAST | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '28 23 * * 1' | |
jobs: | |
zarn: | |
name: Security Static Analysis with ZARN | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Perform Static Analysis | |
uses: htrgouvea/zarn@0.0.9 | |
- name: Send result to Github Security | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: result.sarif |