diff options
| author | Xe Iaso <me@xeiaso.net> | 2025-04-02 19:53:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-02 19:53:44 -0400 |
| commit | 5c43cc205d6a31de78e7b4fe2128c7711381daa2 (patch) | |
| tree | 0b21b2b7637c6847f396b6e9efe50fe39fc60181 /.github/workflows/zizmor.yml | |
| parent | 8bb9236c724a23b0c7ae4dd0f5bc97dba2966267 (diff) | |
| parent | 573dfd099fa53c0cdbc3256cf15ea36af5bb9cb0 (diff) | |
| download | anubis-Xe/Makefile.tar.xz anubis-Xe/Makefile.zip | |
Merge branch 'main' into Xe/MakefileXe/Makefile
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to '.github/workflows/zizmor.yml')
| -rw-r--r-- | .github/workflows/zizmor.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml new file mode 100644 index 0000000..c2a03ab --- /dev/null +++ b/.github/workflows/zizmor.yml @@ -0,0 +1,35 @@ +name: zizmor + +on: + push: + paths: + - '.github/workflows/*.ya?ml' + pull_request: + paths: + - '.github/workflows/*.ya?ml' + +jobs: + zizmor: + name: zizmor latest via PyPI + runs-on: ubuntu-latest + permissions: + security-events: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Install the latest version of uv + uses: astral-sh/setup-uv@v5 + + - name: Run zizmor 🌈 + run: uvx zizmor --format sarif . > results.sarif + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + category: zizmor |
