Skip to content

Bump Microsoft.AspNetCore.Authentication.JwtBearer and 12 others #34

Bump Microsoft.AspNetCore.Authentication.JwtBearer and 12 others

Bump Microsoft.AspNetCore.Authentication.JwtBearer and 12 others #34

Workflow file for this run

name: Semgrep
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "17 5 * * 2" # weekly Tue 05:17 UTC
workflow_dispatch:
permissions:
contents: read
security-events: write
jobs:
semgrep:
name: Semgrep scan
runs-on: ubuntu-latest
container:
image: semgrep/semgrep:1.92.0
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v4
- name: Run Semgrep
run: semgrep ci --config=p/owasp-top-ten --config=p/csharp --config=p/typescript --config=p/security-audit --config=security/semgrep.yml --sarif --output=semgrep-results.sarif
env:
SEMGREP_RULES: "p/security-audit"
- name: Upload SARIF
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: semgrep-results.sarif
category: semgrep