diff --git a/.github/workflows/zizmor.yaml b/.github/workflows/zizmor.yaml new file mode 100644 index 0000000000..500152b962 --- /dev/null +++ b/.github/workflows/zizmor.yaml @@ -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 diff --git a/changelog.d/18256.misc b/changelog.d/18256.misc new file mode 100644 index 0000000000..8fd798f05e --- /dev/null +++ b/changelog.d/18256.misc @@ -0,0 +1 @@ +Add Zizmor check in CI to check the CI configuration for security problems. \ No newline at end of file