hexo-yam/.github/workflows/semgrep.yml

24 lines
460 B
YAML
Raw Normal View History

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
- cron: "0 0 * * 0"
2022-10-09 07:32:00 +00:00
jobs:
semgrep:
name: Scan
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:
- uses: actions/checkout@v4
2022-10-09 07:32:00 +00:00
- run: semgrep ci