Skip to content

Commit

Permalink
feat: Add SAST scanning using semgrep (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
saisatishkarra authored Jan 24, 2024
1 parent da015c9 commit 385c8b1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/sast.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: SAST

on:
pull_request:
branches:
- master
push:
branches:
- master
tags:
- 'v*.*.*'
workflow_dispatch: {}


jobs:
semgrep:
name: Semgrep SAST
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read

if: (github.actor != 'dependabot[bot]')

steps:
- uses: actions/checkout@v4
- uses: Kong/public-shared-actions/security-actions/semgrep@bd3d75259607dd015bea3b3313123f53b80e9d7f

0 comments on commit 385c8b1

Please sign in to comment.