name: "CodeQL Analysis" on: push: branches: [ develop ] pull_request: branches: [ develop ] schedule: - cron: '30 0 * * 2' workflow_dispatch: permissions: {} jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: # NOTE: If you add security critical permissions, start pinning used actions actions: read contents: read security-events: write # for uploading to code-scanning dashboard steps: - name: Checkout repository uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - name: Initialize CodeQL uses: github/codeql-action/init@v2 # unpinned since this is not security critical with: languages: 'python' - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 # unpinned since this is not security critical