-
Notifications
You must be signed in to change notification settings - Fork 327
40 lines (34 loc) · 1.03 KB
/
zizmor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Performs static analysis in GitHub actions with https://github.com/woodruffw/zizmor
name: Zizmor
on:
push:
branches:
- main
pull_request:
branches:
- "*"
permissions:
contents: read
jobs:
zizmor:
name: "Run Zizmor"
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: "Checkout repository 🛎"
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- name: "Install uv 📦"
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
- name: "Run zizmor 🕵️♂️"
run: uvx zizmor --format sarif . > results.sarif
- name: "Upload SARIF file 📤"
uses: github/codeql-action/upload-sarif@v3
with:
# Path to SARIF file relative to the root of the repository
sarif_file: results.sarif
# Optional category for the results
# Used to differentiate multiple results for one commit
category: zizmor