[CEPF-1677] Updated Json package version to fix security vulnerabilities #2
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 scan | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
jobs: | |
public-repo-job: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.repository.private == false }} | |
container: | |
image: semgrep/semgrep | |
steps: | |
- uses: actions/[email protected] | |
- name: run on public repo | |
run: semgrep ci &> /dev/null | |
env: | |
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN_PUBLIC }} |