Skip to content

Bump build from 1.2.1 to 1.2.2 #704

Bump build from 1.2.1 to 1.2.2

Bump build from 1.2.1 to 1.2.2 #704

Workflow file for this run

name: CodeQL
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 1"
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 repository
uses: actions/checkout@v4
- name: Install libcurl4-openssl-dev for compiling PycURL
if: matrix.language == 'Python'
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3