Build(deps): Bump Microsoft.AspNetCore.Authentication.JwtBearer from 7.0.9 to 7.0.10 #209
Workflow file for this run
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@v3 | |
- name: Cache NuGet Packages | |
uses: actions/cache@v3 | |
with: | |
key: nuget-${{ hashFiles('Directory.Packages.props') }} | |
path: ~/.nuget/packages | |
- name: Install dotnet cake | |
run: | | |
dotnet tool install -g Cake.Tool | |
- name: Build with dotnet | |
run: dotnet cake --target=Build | |
- 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@v2 | |
with: | |
sarif_file: infer-out/report.sarif |