Skip to content

Library functions that are used in the silver searcher including some from the pcre library #7541

Library functions that are used in the silver searcher including some from the pcre library

Library functions that are used in the silver searcher including some from the pcre library #7541

Workflow file for this run

name: semgrep
on:
push:
branches-ignore:
# Error: Workflows triggered by Dependabot on the "push" event run with read-only access. Uploading Code Scanning results requires write access. To use Code Scanning with Dependabot, please ensure you are using the "pull_request" event for this workflow and avoid triggering on the "push" event for Dependabot branches. See https://docs.github.com/en/code-security/secure-coding/configuring-code-scanning#scanning-on-push for more information on how to configure these events.
- dependabot/**
pull_request:
jobs:
semgrep:
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run semgrep
run: semgrep scan --sarif --output=semgrep.sarif
- name: Upload SARIF file to GitHub Advanced Security Dashboard
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: semgrep.sarif
if: always()