2022-10-09 07:32:00 +00:00
|
|
|
name: Semgrep
|
|
|
|
on:
|
|
|
|
pull_request: {}
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- .github/workflows/semgrep.yml
|
|
|
|
schedule:
|
2022-10-09 08:00:56 +00:00
|
|
|
# Weekly
|
2023-05-06 06:00:36 +00:00
|
|
|
- cron: "0 0 * * 0"
|
2022-10-09 07:32:00 +00:00
|
|
|
jobs:
|
|
|
|
semgrep:
|
|
|
|
name: Scan
|
2023-05-06 06:00:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-10-09 07:32:00 +00:00
|
|
|
env:
|
|
|
|
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
|
|
|
|
container:
|
|
|
|
image: returntocorp/semgrep
|
|
|
|
if: (github.actor != 'dependabot[bot]')
|
|
|
|
steps:
|
2023-10-01 04:48:01 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-10-09 07:32:00 +00:00
|
|
|
- run: semgrep ci
|