Files
copilotkit__copilotkit/.github/workflows/security_zizmor.yml
dependabot[bot] 8318ecf2eb chore(ci)(deps): bump zizmorcore/zizmor-action
Bumps the minor-and-patch group with 1 update: [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action).


Updates `zizmorcore/zizmor-action` from 0.5.4 to 0.5.6
- [Release notes](https://github.com/zizmorcore/zizmor-action/releases)
- [Commits](https://github.com/zizmorcore/zizmor-action/compare/b572f7b1a1c2d41efaab43d504f68d215c3cd727...5f14fd08f7cf1cb1609c1e344975f152c7ee938d)

---
updated-dependencies:
- dependency-name: zizmorcore/zizmor-action
  dependency-version: 0.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-18 05:59:02 +00:00

63 lines
2.0 KiB
YAML

name: security / zizmor
# zizmor runs static analysis over every workflow under .github/workflows
# looking for the well-known classes of GitHub Actions footguns: template
# injection from untrusted input, dangerous triggers like
# `pull_request_target`, unpinned `uses:` refs, excessive token scopes,
# secret exfil via job outputs, and a long tail of others.
#
# Findings at `low` confidence and above fail the job, so this acts as a
# blocking PR check. To deliberately allow a finding, suppress it in
# `.github/zizmor.yml` with a justification — never silently ignore.
on:
push:
branches: [main]
paths:
- ".github/workflows/**"
- ".github/actions/**"
- ".github/zizmor.yml"
- ".github/dependabot.yml"
pull_request:
paths:
- ".github/workflows/**"
- ".github/actions/**"
- ".github/zizmor.yml"
- ".github/dependabot.yml"
schedule:
# Catch findings introduced by newly-published advisories even when no
# workflow file changed this week.
- cron: "0 9 * * 1"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
zizmor:
name: Static analysis (zizmor)
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
# SARIF upload requires `security-events: write`, but we currently
# rely on the action's own annotations. Keep contents:read only.
contents: read
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false
- name: Run zizmor
# `min-severity: low` blocks PRs on the broadest set of findings
# without flagging hypothetical-only `informational` notes. Drop
# to `medium` if low-severity churn becomes a problem.
uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6
with:
min-severity: low
advanced-security: false
config: .github/zizmor.yml