Skip to content

feat: production hardening — benchmarks, workflows, Containerfile, se… #4

feat: production hardening — benchmarks, workflows, Containerfile, se…

feat: production hardening — benchmarks, workflows, Containerfile, se… #4

Workflow file for this run

# SPDX-License-Identifier: PMPL-1.0-or-later
# Presswerk — CodeQL workflow analysis (Rust not supported; scans Actions only)
name: CodeQL Security Analysis
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 6 * * 1'
permissions: read-all
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Initialize CodeQL
uses: github/codeql-action/init@6624720a57d4c312633c7b953db2f2da5bcb4c3a # v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@6624720a57d4c312633c7b953db2f2da5bcb4c3a # v3
with:
category: "/language:${{ matrix.language }}"