Skip to content

Commit

Permalink
Merge pull request #3 from sigmacomputing/varun-semgrep
Browse files Browse the repository at this point in the history
Added Semgrep CI/CD scan
  • Loading branch information
voidd7 authored May 14, 2024
2 parents bd47478 + 7fd7ff3 commit 1bbb1d1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Semgrep
on:
pull_request:
workflow_dispatch:

jobs:
semgrep:
name: Run Semgrep
runs-on: ubuntu-latest
timeout-minutes: 30
container:
# A Docker image with Semgrep installed. Do not change this.
image: returntocorp/semgrep
steps:
- uses: actions/checkout@v4
- run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN_PUBLIC }}

0 comments on commit 1bbb1d1

Please sign in to comment.