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 d9f0eff commit 0d0ba37
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

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: '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 }}

0 comments on commit 0d0ba37

Please sign in to comment.