Bump Microsoft.ApplicationInsights.WorkerService from 2.23.0 to 3.0.0 #20
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 ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '0 2 * * 1' | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| matrix: | |
| language: [ 'csharp' ] | |
| build-mode: [ 'autobuild' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| dependency-caching: true | |
| - name: Autobuild | |
| if: ${{ matrix.build-mode == 'autobuild' }} | |
| uses: github/codeql-action/autobuild@v4 | |
| # For manual build mode, replace Autobuild with explicit commands: | |
| # - run: dotnet restore && dotnet build MySolution.sln --no-incremental | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |