Update filtering and expose URLs field #371
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: Semgrep | |
# yamllint disable-line rule:truthy | |
on: | |
# Scan changed files in PRs, block on new issues only | |
# (existing issues ignored) | |
pull_request: {} | |
# Scan all files on branches, block on any issues | |
# push: | |
# branches: ["master", "main"] | |
# Schedule this job to run at a certain time, using cron syntax | |
# Note that * is a special character in YAML so you have to quote this string | |
# schedule: | |
# - cron: '30 0 1,15 * *' | |
workflow_dispatch: | |
jobs: | |
semgrep: | |
name: Scan | |
runs-on: ubuntu-latest | |
# Skip any PR created by dependabot to avoid permission issues | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
# Fetch project source | |
- uses: actions/checkout@v2 | |
- uses: returntocorp/semgrep-action@v1 | |
with: | |
generateSarif: '1' | |
config: >- # more at semgrep.dev/explore | |
p/security-audit | |
p/secrets | |
# Upload findings to GitHub Advanced Security Dashboard [step 2/2] | |
- name: Upload SARIF file for GitHub Advanced Security Dashboard | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: semgrep.sarif | |
if: always() |