fix: Add another write to ensure flushing #64
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 | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
jobs: | |
zizmor: | |
name: zizmor latest via Cargo | |
runs-on: ubuntu-24.04 | |
permissions: | |
security-events: write | |
# required for workflows in private repositories | |
contents: read | |
actions: read | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Setup Rust | |
uses: actions-rust-lang/[email protected] | |
- name: Get zizmor | |
run: cargo install --locked zizmor | |
- name: Run zizmor | |
run: zizmor --format sarif . > results.sarif | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload SARIF file | |
uses: github/codeql-action/[email protected] | |
with: | |
sarif_file: results.sarif | |
category: zizmor |