tmp: bpf: fallback to bounded loop if bpf_loop is not available #248
This file contains hidden or 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
# TODO: if zizmor doesn't pass, don't run any other action | |
name: GitHub Actions Security Analysis with zizmor 🌈 | |
on: | |
push: | |
branches: ["main", "release-*"] | |
pull_request: | |
branches: ["**"] | |
permissions: | |
contents: read | |
jobs: | |
zizmor: | |
name: zizmor latest via PyPI | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
persist-credentials: false | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0 | |
with: | |
enable-cache: false | |
- name: Run zizmor 🌈 | |
run: uvx zizmor --format=github . | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |