forked from labring/aiproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 823 Bytes
/
check-semgrep.yml
File metadata and controls
41 lines (39 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Name of this GitHub Actions workflow.
name: Check-Semgrep
on:
workflow_call:
workflow_dispatch:
schedule:
- cron: 0 0 * * *
push:
branches:
- "**"
tags:
- "v*.*.*"
paths-ignore:
- "**/*.md"
- "**/*.yaml"
pull_request:
branches:
- "**"
paths-ignore:
- "**/*.md"
- "**/*.yaml"
jobs:
semgrep:
name: Scan
runs-on: ubuntu-24.04
container:
image: semgrep/semgrep:latest
continue-on-error: true
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v5
- run: |
semgrep ci \
--config p/ci \
--config p/security-audit \
--config p/golang \
--config p/react \
--config p/javascript \
--config p/owasp-top-ten