Use correct name for PDB file for pie installs. (#1745) #500
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: "Static Analysis" | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- "v*.*" | |
- "master" | |
- "feature/*" | |
push: | |
branches: | |
- "v*.*" | |
- "master" | |
- "feature/*" | |
workflow_call: | |
inputs: | |
ref: | |
description: "The git ref to check" | |
type: string | |
required: true | |
jobs: | |
semgrep: | |
name: "Semgrep" | |
runs-on: "ubuntu-latest" | |
container: | |
image: semgrep/semgrep | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref }} | |
submodules: true | |
- name: "Scan" | |
run: semgrep scan --sarif-output=semgrep.sarif | |
- name: "Upload SARIF report" | |
uses: "github/codeql-action/upload-sarif@v3" | |
with: | |
sarif_file: semgrep.sarif |