Semgrep #1877
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow file requires a free account on Semgrep.dev to | |
# manage rules, file ignores, notifications, and more. | |
# | |
# See https://semgrep.dev/docs | |
name: Semgrep | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ main ] | |
schedule: | |
- cron: '39 19 * * 6' | |
jobs: | |
semgrep: | |
name: Scan | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout project source | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
# Scan code using project's configuration on https://semgrep.dev/manage | |
- uses: returntocorp/semgrep-action@549796168c0ddcb9149b10a0e79e5f6522f50797 | |
with: | |
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }} | |
generateSarif: "1" | |
# Upload SARIF file generated in previous step | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: semgrep.sarif | |
if: always() |