Build(deps): Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.1 to 9.0.4 #727
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: 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/setup-dotnet@v4.3.0 | |
| with: | |
| dotnet-version: '9.x' | |
| - name: Build with dotnet | |
| run: dotnet build WebApiBoilerplate.sln --no-incremental | |
| - name: Run Infer# | |
| uses: microsoft/infersharpaction@v1.5 | |
| 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 |