add zizmor scanning to workflows #1
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: Zizmor | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
# Run weekly | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
zizmor-analysis: | |
name: Run Zizmor | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Install Zizmor | |
run: | | |
cargo install zizmor | |
- name: Run Zizmor analysis | |
run: | | |
zizmor --format sarif .github/workflows/ > results.sarif | |
- name: Upload analysis results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zizmor-results | |
path: results.sarif | |
retention-days: 7 | |
- name: Upload to code-scanning | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif |