2022-04-01 09:40:25 -05:00
|
|
|
name: "CodeQL for PR / python"
|
|
|
|
|
|
|
|
on:
|
2022-11-04 09:20:08 -05:00
|
|
|
workflow_dispatch:
|
2022-04-01 09:40:25 -05:00
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
|
|
|
- '**/*.py'
|
|
|
|
|
2023-08-02 06:25:23 -05:00
|
|
|
permissions:
|
|
|
|
security-events: write
|
|
|
|
|
2022-04-01 09:40:25 -05:00
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-05 03:10:10 -05:00
|
|
|
uses: actions/checkout@v4
|
2022-04-01 09:40:25 -05:00
|
|
|
with:
|
|
|
|
# We must fetch at least the immediate parents so that if this is
|
|
|
|
# a pull request then we can checkout the head.
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
- name: Initialize CodeQL
|
2022-06-13 05:29:42 -05:00
|
|
|
uses: github/codeql-action/init@v2
|
2022-04-01 09:40:25 -05:00
|
|
|
with:
|
|
|
|
languages: "python"
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2022-06-13 05:29:42 -05:00
|
|
|
uses: github/codeql-action/analyze@v2
|
2024-02-22 03:26:50 -06:00
|
|
|
if: github.repository == 'grafana/grafana'
|