chore(deps): update dependency dotnet-reportgenerator-globaltool to v5.3.7 #238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeQL Security Testing | |
on: | |
pull_request: | |
branches: | |
- "**" | |
schedule: | |
- cron: "0 20 * * 5" | |
workflow_dispatch: | |
concurrency: | |
group: codeql-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
codeQL: | |
name: CodeQL C# | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: csharp | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:csharp" |