Bump SonarAnalyzer.CSharp from 10.8.0.113526 to 10.9.0.115408 #191
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "**/*.cs" | |
| - "**/*.csproj" | |
| - "**/*.props" | |
| - ".github/workflows/codeql.yml" | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - "**/*.cs" | |
| - "**/*.csproj" | |
| - "**/*.props" | |
| - ".github/workflows/codeql.yml" | |
| schedule: | |
| - cron: "0 21 * * 0" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ["csharp"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v3 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 |