Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable codeql. Based on pr 12402 #14926

Draft
wants to merge 24 commits into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c0dd681
Enable codeql. Based on pr 12402
giancorderoortiz Feb 1, 2022
a56ec33
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Feb 1, 2022
efe6664
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Feb 2, 2022
ad11af8
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Feb 18, 2022
67d65d0
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 3, 2022
06469a2
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 7, 2022
5227290
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 9, 2022
0b52907
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 16, 2022
2f92c34
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 17, 2022
e9b0867
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 30, 2022
23799e7
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Apr 3, 2022
95a015e
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Apr 5, 2022
26a6bc8
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Apr 26, 2022
ea75c5b
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz May 2, 2022
e2bd81f
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz May 3, 2022
364832f
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Jun 10, 2022
b7f509d
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Jun 12, 2022
10890bf
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Jul 27, 2022
d488c58
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Aug 5, 2022
b10a5ff
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Feb 12, 2023
a5eacf2
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 23, 2023
76bba85
upgrade codeql version to v2
giancorderoortiz Mar 23, 2023
6695db7
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Mar 27, 2023
e2b7f37
Merge branch 'develop' into feature/GH-14925_enable_codeql
giancorderoortiz Nov 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ develop ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop ]
schedule:
- cron: '32 8 * * 5'

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

strategy:
fail-fast: false
matrix:
language: [ 'typescript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
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

# 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@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ 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

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
Loading