Skip to content

Commit

Permalink
ci: run CodeQL only on python changes
Browse files Browse the repository at this point in the history
Ticket: 7358
  • Loading branch information
catenacyber committed Dec 17, 2024
1 parent 2c0d3b8 commit c844002
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'cpp', 'python' ]
language: [ 'cpp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
steps:
- name: Checkout repository
Expand Down
67 changes: 67 additions & 0 deletions .github/workflows/codeqlpy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: "CodeQL"

on:
push:
branches: [ master ]
paths:
- "python/**"
- "**/*.py"
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
paths:
- "python/**"
- "**/*.py"
schedule:
- cron: '18 21 * * 1'

permissions: read-all

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
continue-on-error: true
permissions:
actions: read
contents: read
security-events: write


strategy:
fail-fast: false
matrix:
language: [ 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/[email protected]
with:
languages: ${{ matrix.language }}
queries: security-extended

- run: |
sudo apt-get update
sudo apt-get install libyaml-dev
sudo apt-get install libssl-dev
sudo apt-get install libpcre2-dev
sudo apt-get install libjansson-dev
sudo apt-get install libpcap-dev
sudo apt-get install libnuma-dev
git clone --depth 1 https://github.com/OISF/libhtp.git
cargo install cbindgen
export PATH=/opt/work/.cargo/bin:$PATH
chmod +x autogen.sh
./autogen.sh
./configure --enable-warnings
make
- name: Perform CodeQL Analysis
uses: github/codeql-action/[email protected]

0 comments on commit c844002

Please sign in to comment.