1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-31 03:45:13 +00:00
This commit is contained in:
reivilibre 2025-03-28 12:46:38 +00:00 committed by GitHub
commit fd541e3505
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 44 additions and 0 deletions

43
.github/workflows/zizmor.yaml vendored Normal file
View file

@ -0,0 +1,43 @@
name: GitHub Actions security check (zizmor)
on:
push:
branches: ["main"]
paths:
- .github/workflows/**
pull_request:
branches: ["**"]
paths:
- .github/workflows/**
jobs:
zizmor:
name: zizmor latest via PyPI
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read # only needed for private repos
actions: read # only needed for private repos
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

1
changelog.d/18256.misc Normal file
View file

@ -0,0 +1 @@
Add Zizmor check in CI to check the CI configuration for security problems.