refactor(cscore): produktivreife CSCore-Integration, Version 6.1.13 und Doku-Normalisierung #220
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 | |
| # NOTE: This workflow is an "advanced configuration". GitHub CodeQL "default setup" | |
| # must be set to "not-configured" for this repository, otherwise SARIF uploads will fail. | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| schedule: | |
| # Weekly scan to catch new CodeQL queries or dependency drift. | |
| - cron: "23 3 * * 0" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: codeql-${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| analyze: | |
| name: Analyze (csharp) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ["csharp"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4 | |
| with: | |
| dotnet-version: "10.0.102" | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@9e907b5e64f6b83e7804b09294d44122997950d6 # v4.32.3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: manual | |
| # Security-only (no quality queries) to keep `security/code-scanning` alert count policy-conform. | |
| queries: security-extended | |
| - name: Build (CodeQL traced) | |
| run: | | |
| dotnet restore --locked-mode -v minimal FileClassifier.sln | |
| dotnet build -c Release --no-restore -v minimal FileClassifier.sln | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@9e907b5e64f6b83e7804b09294d44122997950d6 # v4.32.3 | |
| with: | |
| category: "/language:${{ matrix.language }}" |