Skip to content

Commit

Permalink
[skip ci] Add security code scanning workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yogur authored and advanced-security-actions-deployer[bot] committed Oct 10, 2024
1 parent da8039d commit e1b8c9a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/security-analysis.yml
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: '38 22 11 * *'
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 }}

0 comments on commit e1b8c9a

Please sign in to comment.