Skip to content

CodeQL Analysis Script #23

CodeQL Analysis Script

CodeQL Analysis Script #23

Workflow file for this run

name: "CodeQL Analysis Script"
on:
push:
pull_request:
workflow_dispatch:
schedule:
# 11:15 PM UTC every Sunday
- cron: '15 23 * * 0'
jobs:
codeql:
name: Run CodeQL
runs-on: ${{ github.repository_owner == 'cFS' && 'linux' || 'ubuntu-latest' }}
steps:
- name: Checkout bundle
uses: actions/checkout@v3
with:
repository: arielswalker/cFS
submodules: true
- name: Make the Script Executable
run: chmod +x ./.github/scripts/codeql.sh
- name: Run CodeQL Analysis Script
run: ./.github/scripts/codeql.sh
env:
COMPONENT_PATH: 'cfe'
MAKE_COMMAND: 'make -j8'
TEST_FLAG: 'true'
- name: Archive Sarif
uses: actions/upload-artifact@v4
with:
name: CodeQL-Sarif
path: CodeQL-Sarif
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: CodeQL-Sarif-${{ matrix.scan-type }}/Codeql-${{ matrix.scan-type }}.sarif