22 lines
363 B
YAML
22 lines
363 B
YAML
|
name: Semgrep
|
||
|
|
||
|
on:
|
||
|
pull_request: {}
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- '201[7-9][0-1][0-9]'
|
||
|
- '202[0-9][0-1][0-9]'
|
||
|
|
||
|
jobs:
|
||
|
semgrep:
|
||
|
name: Semgrep
|
||
|
runs-on: ubuntu-latest
|
||
|
container:
|
||
|
image: returntocorp/semgrep
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- run: semgrep ci
|
||
|
env:
|
||
|
SEMGREP_RULES: p/default
|