2020-11-21 17:49:52 +00:00
|
|
|
name: "CodeQL"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
schedule:
|
|
|
|
- cron: '24 2 * * 4'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
language: [ 'csharp' ]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-06-10 12:55:15 +00:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-11-09 14:28:52 +00:00
|
|
|
- name: Setup .NET
|
2023-05-29 13:42:21 +00:00
|
|
|
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
|
2020-11-21 18:03:09 +00:00
|
|
|
with:
|
2022-11-09 14:28:52 +00:00
|
|
|
dotnet-version: '7.0.x'
|
2021-11-08 13:55:16 +00:00
|
|
|
|
2020-11-21 17:49:52 +00:00
|
|
|
- name: Initialize CodeQL
|
2023-06-21 13:13:34 +00:00
|
|
|
uses: github/codeql-action/init@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1
|
2020-11-21 17:49:52 +00:00
|
|
|
with:
|
|
|
|
languages: ${{ matrix.language }}
|
2020-11-21 18:21:58 +00:00
|
|
|
queries: +security-extended
|
2020-11-21 17:49:52 +00:00
|
|
|
- name: Autobuild
|
2023-06-21 13:13:34 +00:00
|
|
|
uses: github/codeql-action/autobuild@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1
|
2020-11-21 17:49:52 +00:00
|
|
|
- name: Perform CodeQL Analysis
|
2023-06-21 13:13:34 +00:00
|
|
|
uses: github/codeql-action/analyze@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1
|