-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skip ci] Add security code scanning workflow
- Loading branch information
1 parent
d9f0eff
commit 0d0ba37
Showing
2 changed files
with
24 additions
and
31 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: "Security Static Analysis" | ||
|
||
on: | ||
pull_request: {} | ||
workflow_dispatch: {} | ||
push: | ||
branches: | ||
- main | ||
- master | ||
schedule: | ||
- cron: '48 9 27 * *' | ||
jobs: | ||
scan: | ||
name: "Security Static Analysis" | ||
runs-on: ubuntu-latest | ||
|
||
# Skip any PR created by dependabot: | ||
if: (github.actor != 'dependabot[bot]') | ||
|
||
steps: | ||
- uses: scout24/s24-sast-action@v2 | ||
with: | ||
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} | ||
|