2023-12-11 20:30:44 -05:00
|
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: curl
|
|
|
|
|
|
|
|
|
|
name: CodeQL
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
2024-05-15 15:20:32 -04:00
|
|
|
|
- master
|
|
|
|
|
- '*/ci'
|
2023-12-11 20:30:44 -05:00
|
|
|
|
paths-ignore:
|
2024-05-15 15:20:32 -04:00
|
|
|
|
- '**/*.md'
|
|
|
|
|
- '.azure-pipelines.yml'
|
|
|
|
|
- '.circleci/**'
|
|
|
|
|
- '.cirrus.yml'
|
|
|
|
|
- 'appveyor.*'
|
|
|
|
|
- 'docs/**'
|
|
|
|
|
- 'packages/**'
|
|
|
|
|
- 'plan9/**'
|
|
|
|
|
- 'projects/**'
|
|
|
|
|
- 'tests/data/**'
|
|
|
|
|
- 'winbuild/**'
|
2023-12-11 20:30:44 -05:00
|
|
|
|
pull_request:
|
|
|
|
|
branches:
|
2024-05-15 15:20:32 -04:00
|
|
|
|
- master
|
2023-12-11 20:30:44 -05:00
|
|
|
|
paths-ignore:
|
2024-05-15 15:20:32 -04:00
|
|
|
|
- '**/*.md'
|
|
|
|
|
- '.azure-pipelines.yml'
|
|
|
|
|
- '.circleci/**'
|
|
|
|
|
- '.cirrus.yml'
|
|
|
|
|
- 'appveyor.*'
|
|
|
|
|
- 'docs/**'
|
|
|
|
|
- 'packages/**'
|
|
|
|
|
- 'plan9/**'
|
|
|
|
|
- 'projects/**'
|
|
|
|
|
- 'tests/data/**'
|
|
|
|
|
- 'winbuild/**'
|
2023-12-11 20:30:44 -05:00
|
|
|
|
schedule:
|
|
|
|
|
- cron: '0 0 * * 4'
|
|
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
|
|
|
|
|
|
permissions: {}
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
codeql:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
permissions:
|
|
|
|
|
security-events: write
|
|
|
|
|
steps:
|
2024-05-15 15:20:32 -04:00
|
|
|
|
- name: Checkout repository
|
|
|
|
|
uses: actions/checkout@v4
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
|
- name: Initialize CodeQL
|
|
|
|
|
uses: github/codeql-action/init@v3
|
|
|
|
|
with:
|
|
|
|
|
languages: cpp
|
|
|
|
|
queries: security-extended
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
|
|
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
|
|
|
- name: Autobuild
|
|
|
|
|
uses: github/codeql-action/autobuild@v3
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
|
|
|
# 📚 https://git.io/JvXDl
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
|
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
|
|
|
# and modify them (or add more) to build your code if your project
|
|
|
|
|
# uses a compiled language
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
|
# - run: |
|
|
|
|
|
# make bootstrap
|
|
|
|
|
# make release
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
|
uses: github/codeql-action/analyze@v3
|