Skip to content

chore: remove scripts-build-cdn from this repository #6017

chore: remove scripts-build-cdn from this repository

chore: remove scripts-build-cdn from this repository #6017

Workflow file for this run

# Name of this GitHub Actions workflow.
name: Semgrep
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
paths:
- .github/workflows/semgrep.yml
schedule:
- cron: '0 0 * * 0'
jobs:
semgrep:
environment: pull_request_unsafe
name: Scan
runs-on: ubuntu-latest
container:
# A Docker image with Semgrep installed. Do not change this.
image: returntocorp/semgrep
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
# Run the "semgrep ci" command on the command line of the docker image.
- run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}