GitHub Actions Security Analysis with Zizmor #3
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: " GitHub Actions Security Analysis with Zizmor" | |
# The scheduled workflow runs every Sunday at 23:45 UTC. | |
on: | |
push: | |
schedule: | |
- cron: '45 23 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Get zizmor | |
run: cargo install zizmor | |
# https://github.com/woodruffw/zizmor | |
- name: Run zizmor | |
run: zizmor --format sarif . > results.sarif | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif | |
category: zizmor |