Bump python from 36d57d7
to 5dc6f84
#53
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: 'CodeQL analysis' | |
on: | |
push: | |
tags: ['*'] | |
branches: ['*'] | |
pull_request: | |
branches: ['*'] | |
schedule: | |
- cron: '25 10 * * 3' | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
analyze: | |
name: 'CodeQL analysis' | |
runs-on: 'ubuntu-latest' | |
permissions: | |
actions: 'read' | |
contents: 'read' | |
security-events: 'write' | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['python'] | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633' | |
- name: 'Initialize CodeQL' | |
uses: 'github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a' | |
with: | |
languages: '${{ matrix.language }}' | |
- name: 'Autobuild' | |
uses: 'github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a' | |
- name: 'Perform CodeQL Analysis' | |
uses: 'github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a' |