Build(deps): Bump Ardalis.Result.AspNetCore from 10.0.0 to 10.1.0 #661
This file contains 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: InferSharp | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
analyze: | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ csharp ] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Cache NuGet Packages | |
uses: actions/cache@v4 | |
with: | |
key: nuget-${{ hashFiles('Directory.Packages.props') }} | |
path: ~/.nuget/packages | |
- name: Setup dotnet | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '8.x' | |
- name: Build with dotnet | |
run: dotnet build WebApiBoilerplate.sln --no-incremental | |
- name: Run Infer# | |
uses: microsoft/[email protected] | |
id: runinfersharp | |
with: | |
binary-path: 'src' | |
- name: Upload SARIF output to GitHub Security Center | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: infer-out/report.sarif |