Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ jobs:
fail-fast: false

container:
image: alpine
image: alpine # zizmor: ignore[unpinned-images]
options: --cap-add=SYS_PTRACE

steps:
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
fail-fast: false

container:
image: fedora
image: fedora # zizmor: ignore[unpinned-images]
options: --cap-add=SYS_PTRACE

steps:
Expand Down Expand Up @@ -359,7 +359,7 @@ jobs:
fail-fast: false

container:
image: archlinux
image: archlinux # zizmor: ignore[unpinned-images]
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
Expand Down Expand Up @@ -400,7 +400,7 @@ jobs:
fail-fast: false

container:
image: debian
image: debian # zizmor: ignore[unpinned-images]
options: --cap-add=SYS_PTRACE

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ jobs:
- name: Upload Python report to Codecov
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }} # zizmor: ignore[secrets-outside-env]
files: pycoverage.lcov
flags: python
- name: Upload C++ report to Codecov
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }} # zizmor: ignore[secrets-outside-env]
files: cppcoverage.lcov
flags: cpp
15 changes: 13 additions & 2 deletions .github/workflows/lint_and_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,20 @@ jobs:
- name: Lint sources
run: |
make lint PYTHON=python3
- name: Run zizmor 🌈
uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6
- name: Build docs
run: |
towncrier build --version 99.99 --name pystack --keep
make docs

zizmor:
name: Run zizmor 🌈
runs-on: ubuntu-latest
permissions:
security-events: write # Required for upload-sarif (used by zizmor-action) to upload SARIF files.
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Run zizmor 🌈
uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6
12 changes: 0 additions & 12 deletions zizmor.yml

This file was deleted.

Loading