Skip to content

deps: Bump Asp.Versioning.Mvc and 20 others #42

deps: Bump Asp.Versioning.Mvc and 20 others

deps: Bump Asp.Versioning.Mvc and 20 others #42

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
schedule:
- cron: "15 2 * * 1"
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze C#
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- csharp
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: manual
- name: Restore solution
run: dotnet restore ShopInventory.sln
- name: Build solution
run: dotnet build ShopInventory.sln --configuration Release --no-restore
- name: Analyze
uses: github/codeql-action/analyze@v3