Skip to content

build(deps): bump the codeql-action group across 1 directory with 4 updates #115

build(deps): bump the codeql-action group across 1 directory with 4 updates

build(deps): bump the codeql-action group across 1 directory with 4 updates #115

Workflow file for this run

# SPDX-FileCopyrightText: (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
---
name: Zizmor Scan
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
zizmor:
permissions:
contents: read
security-events: write
runs-on: ubuntu-latest
env:
ZIZMOR_VERSION: 1.20.0
steps:
- name: Harden Runner
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
enable-cache: false
- name: Run Zizmor
run: |
uvx zizmor=="$ZIZMOR_VERSION" \
--format sarif \
.github \
> zizmor_scan_report.sarif
- name: Upload SARIF to GitHub Security
uses: github/codeql-action/upload-sarif@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
if: always() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)
with:
sarif_file: zizmor_scan_report.sarif
- name: Upload Zizmor report artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: always()
with:
name: zizmor-results
path: zizmor_scan_report.sarif
retention-days: 7