Skip to content

Merge pull request #92 from pamosima/dependabot/docker/gitlab/ubuntu-… #208

Merge pull request #92 from pamosima/dependabot/docker/gitlab/ubuntu-…

Merge pull request #92 from pamosima/dependabot/docker/gitlab/ubuntu-… #208

Workflow file for this run

# CodeQL: security-extended + security-and-quality
# Permissions: contents read, security-events write (upload SARIF)
name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 6 * * 1"
concurrency:
group: codeql-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
security-events: write
actions: read
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
# First-party code is Python. Grafana `plugins/` JS is vendored/bundled — excluded from analysis.
matrix:
language: [python]
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Initialize CodeQL
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
with:
category: "/language:${{ matrix.language }}"