Skip to content

Pull Request: JuniperData Service Extraction & Integration Infrastructure #19

Pull Request: JuniperData Service Extraction & Integration Infrastructure

Pull Request: JuniperData Service Extraction & Integration Infrastructure #19

Workflow file for this run

#####################################################################################################################################################################################################
# Project: Juniper
# Sub-Project: JuniperData
# Application: juniper_data
# File Name: codeql.yml
# Author: Paul Calnon
# Version: 1.0.0
#
# Date Created: 2026-02-04
# Last Modified: 2026-02-04
#
# License: MIT License
# Copyright: Copyright (c) 2024-2026 Paul Calnon
#
# Description:
# GitHub CodeQL Security Analysis for JuniperData
# Performs semantic code analysis for security vulnerabilities
#
# References:
# - https://codeql.github.com/docs/codeql-language-guides/codeql-for-python/
# - TEST_SUITE_CICD_ENHANCEMENT_DEVELOPMENT_PLAN.md (INF-001)
#####################################################################################################################################################################################################
name: CodeQL Analysis
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
schedule:
- cron: '0 6 * * 1' # Weekly on Monday at 6 AM UTC
jobs:
analyze:
name: Analyze
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Initialize CodeQL
uses: github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
with:
category: "/language:${{ matrix.language }}"