Skip to content

bug fix

bug fix #9679

Workflow file for this run

# This workflow is used to find vulnerablities inside the codebase with CodeQL
name: "Code scanning - action"
on:
push:
pull_request:
schedule:
- cron: '0 23 * * 2'
jobs:
CodeQL-Build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1