Simplify archive/unarchive UI buttons (#17532) #1416
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
# https://github.com/woodruffw/zizmor | |
name: GitHub Actions Security Analysis with Zizmor | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
zizmor: | |
# Advanced Security is not enabled on private repositories | |
if: github.repository == 'pypi/warehouse' | |
name: Zizmor | |
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/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Run zizmor | |
run: pipx run 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 |