helm-charts/.github/workflows/codeql.yml
lab-assistant[bot] 3632957ff3
ci(github-action): update github/codeql-action ( v3.28.18 → v3.28.19 )
| datasource  | package              | from     | to       |
| ----------- | -------------------- | -------- | -------- |
| github-tags | github/codeql-action | v3.28.18 | v3.28.19 |
2025-06-06 13:33:32 +00:00

57 lines
1.3 KiB
YAML

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "CodeQL check"
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: '30 6 * * *'
permissions:
contents: read
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
security-events: write
packages: read
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
source-root: .
steps:
- name: Checkout
id: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Initialize CodeQL
id: initialize
uses: github/codeql-action/init@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
source-root: ${{ matrix.source-root }}
- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/analyze@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
with:
category: '/language:${{matrix.language}}'