2023-07-17 08:08:20 +00:00
|
|
|
|
name: "Code Scanning"
|
2020-06-30 17:23:50 +00:00
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
2024-02-16 10:54:41 +00:00
|
|
|
|
branches:
|
2021-07-27 12:34:56 +00:00
|
|
|
|
- 'main'
|
2020-10-16 12:13:02 +00:00
|
|
|
|
paths-ignore:
|
2021-04-16 06:13:12 +00:00
|
|
|
|
- 'docs/**'
|
2020-06-30 17:23:50 +00:00
|
|
|
|
pull_request:
|
2020-07-30 06:55:52 +00:00
|
|
|
|
# The branches below must be a subset of the branches above
|
2024-02-16 10:54:41 +00:00
|
|
|
|
branches:
|
2021-07-27 12:34:56 +00:00
|
|
|
|
- 'main'
|
2020-10-16 12:13:02 +00:00
|
|
|
|
paths-ignore:
|
2021-04-16 06:13:12 +00:00
|
|
|
|
- 'docs/**'
|
2020-06-30 17:23:50 +00:00
|
|
|
|
|
2024-03-28 07:15:03 +00:00
|
|
|
|
concurrency:
|
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
|
cancel-in-progress: true
|
2024-02-16 10:54:41 +00:00
|
|
|
|
|
2020-06-30 17:23:50 +00:00
|
|
|
|
jobs:
|
|
|
|
|
CodeQL-Build:
|
|
|
|
|
runs-on: ubuntu-latest
|
2024-02-16 10:54:41 +00:00
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
language: [go,javascript]
|
2020-06-30 17:23:50 +00:00
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout repository
|
2024-02-16 10:54:41 +00:00
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
- if: matrix.language == 'go'
|
|
|
|
|
name: Install Go
|
2024-03-07 15:38:38 +00:00
|
|
|
|
uses: actions/setup-go@v5
|
2024-02-16 10:54:41 +00:00
|
|
|
|
with:
|
|
|
|
|
go-version-file: go.mod
|
|
|
|
|
|
|
|
|
|
# node to install sass for go
|
|
|
|
|
- if: matrix.language == 'go'
|
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
|
- if: matrix.language == 'go'
|
|
|
|
|
run: |
|
|
|
|
|
npm install -g sass
|
|
|
|
|
make core_build
|
2020-06-30 17:23:50 +00:00
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
|
- name: Initialize CodeQL
|
2024-02-16 10:54:41 +00:00
|
|
|
|
uses: github/codeql-action/init@v3
|
2020-06-30 17:23:50 +00:00
|
|
|
|
# Override language selection by uncommenting this and choosing your languages
|
|
|
|
|
with:
|
2024-02-16 10:54:41 +00:00
|
|
|
|
languages: ${{ matrix.language }}
|
|
|
|
|
debug: true
|
2020-06-30 17:23:50 +00: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)
|
2024-02-16 10:54:41 +00:00
|
|
|
|
# - name: Autobuild
|
|
|
|
|
# uses: github/codeql-action/autobuild@v2
|
2020-06-30 17:23:50 +00:00
|
|
|
|
# ℹ️ 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
|
2024-02-16 10:54:41 +00:00
|
|
|
|
|
|
|
|
|
# autobuild does not work anymore
|
|
|
|
|
# and to be able to compile without an actual console build, we just need a placeholder in the console dist folder
|
|
|
|
|
- name: Autobuild
|
|
|
|
|
uses: github/codeql-action/autobuild@v3
|
2020-06-30 17:23:50 +00:00
|
|
|
|
- name: Perform CodeQL Analysis
|
2024-02-16 10:54:41 +00:00
|
|
|
|
uses: github/codeql-action/analyze@v3
|