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-04-15 22:57:25 +00:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
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-01 19:51:54 +00:00
|
|
|
uses: github/codeql-action/init@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
|
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-01 19:51:54 +00:00
|
|
|
uses: github/codeql-action/autobuild@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
|
2020-11-21 17:49:52 +00:00
|
|
|
- name: Perform CodeQL Analysis
|
2023-06-01 19:51:54 +00:00
|
|
|
uses: github/codeql-action/analyze@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
|