Merge pull request #3 from DotNetExtension/dependabot/nuget/Microsoft… #34
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: Scan Code | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '22 7 * * 1' | |
jobs: | |
scan-code: | |
name: Scan Code | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'csharp' ] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Set up .NET | |
uses: zyactions/dotnet-setup@v1 | |
with: | |
global-json-file: global.json | |
- name: Restore .NET dependencies | |
uses: zyactions/dotnet-restore@v1 | |
- name: Build solution | |
run: dotnet build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |