Skip to content

Bump Microsoft.Extensions.Hosting from 10.0.0 to 10.0.1 #330

Bump Microsoft.Extensions.Hosting from 10.0.0 to 10.0.1

Bump Microsoft.Extensions.Hosting from 10.0.0 to 10.0.1 #330

Workflow file for this run

#
# Runs a security analysis of the code using CodeQL
#
name: CodeQL Analysis
on:
push:
paths:
- '.github/workflows/codeql-analysis.yml'
- 'build/**'
- 'src/**'
pull_request:
paths:
- '.github/workflows/codeql-analysis.yml'
- 'build/**'
- 'src/**'
jobs:
analyze:
name: CodeQL Analyse
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: csharp
queries: +security-extended
- name: Build StreamSDR
run: "dotnet build src --configuration Release"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4