Bump Microsoft.AspNetCore.Authentication.JwtBearer and 12 others #34
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: 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 |