Skip to content

fix(security): bump paramiko to 5.0.0 for CVE-2026-44405 #238

fix(security): bump paramiko to 5.0.0 for CVE-2026-44405

fix(security): bump paramiko to 5.0.0 for CVE-2026-44405 #238

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Initialize CodeQL
uses: github/codeql-action/init@5595ccaf912efad79be6eef63a5619ff05969be3 # v4.37.6
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@5595ccaf912efad79be6eef63a5619ff05969be3 # v4.37.6
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@5595ccaf912efad79be6eef63a5619ff05969be3 # v4.37.6
with:
category: "/language:${{ matrix.language }}"