Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@ on:
pull_request: {}
schedule:
- cron: '0 0 * * 6'
name: Semgrep CE scan test
concurrency:
group: semgrep-${{ github.event_name }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
semgrep:
name: semgrep-oss
runs-on: ubuntu-latest
container:
image: semgrep/semgrep
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v5
- run: semgrep scan --config=auto
with:
python-version: '3.11'
- run: pip install semgrep==1.157.0
- run: semgrep scan --config=auto
Loading