2020-06-18 19:37:05 +02:00
|
|
|
|
name: "Code scanning - action"
|
2020-05-05 23:28:32 +02:00
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
2020-06-18 19:37:05 +02:00
|
|
|
|
pull_request:
|
2020-05-05 23:28:32 +02:00
|
|
|
|
schedule:
|
2020-06-18 19:37:05 +02:00
|
|
|
|
- cron: '0 19 * * 0'
|
2020-05-05 23:28:32 +02:00
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
CodeQL-Build:
|
2022-12-23 07:28:28 +01:00
|
|
|
|
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
|
2020-05-05 23:28:32 +02:00
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
2022-12-23 07:28:28 +01:00
|
|
|
|
permissions:
|
|
|
|
|
# required for all workflows
|
|
|
|
|
security-events: write
|
|
|
|
|
|
2020-05-05 23:28:32 +02:00
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout repository
|
2023-09-05 06:18:13 +02:00
|
|
|
|
uses: actions/checkout@v4
|
2022-04-11 20:36:07 +02:00
|
|
|
|
|
2020-05-05 23:28:32 +02:00
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
|
- name: Initialize CodeQL
|
2022-12-23 07:28:28 +01:00
|
|
|
|
uses: github/codeql-action/init@v2
|
2020-05-05 23:28:32 +02:00
|
|
|
|
# Override language selection by uncommenting this and choosing your languages
|
|
|
|
|
# with:
|
2022-12-23 07:28:28 +01:00
|
|
|
|
# languages: go, javascript, csharp, python, cpp, java, ruby
|
2020-05-05 23:28:32 +02:00
|
|
|
|
|
2022-12-23 07:28:28 +01:00
|
|
|
|
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
|
|
|
|
|
# If this step fails, then you should remove it and run the build manually (see below).
|
2020-05-05 23:28:32 +02:00
|
|
|
|
- name: Autobuild
|
2022-12-23 07:28:28 +01:00
|
|
|
|
uses: github/codeql-action/autobuild@v2
|
2020-05-05 23:28:32 +02:00
|
|
|
|
|
2020-06-18 19:37:05 +02:00
|
|
|
|
# ℹ️ Command-line programs to run using the OS shell.
|
2022-12-23 07:28:28 +01:00
|
|
|
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
2020-06-18 19:37:05 +02:00
|
|
|
|
|
2022-12-23 07:28:28 +01: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
|
2020-06-18 19:37:05 +02:00
|
|
|
|
|
|
|
|
|
#- run: |
|
2022-12-23 07:28:28 +01:00
|
|
|
|
# make bootstrap
|
|
|
|
|
# make release
|
2020-06-18 19:37:05 +02:00
|
|
|
|
|
2020-05-05 23:28:32 +02:00
|
|
|
|
- name: Perform CodeQL Analysis
|
2022-12-23 07:28:28 +01:00
|
|
|
|
uses: github/codeql-action/analyze@v2
|