mirror of
https://github.com/radareorg/iaito.git
synced 2026-02-12 01:42:05 +02:00
24 lines
468 B
YAML
24 lines
468 B
YAML
on:
|
|
pull_request: {}
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
paths:
|
|
- .github/workflows/semgrep.yml
|
|
schedule:
|
|
# random HH:MM to avoid a load spike on GitHub Actions at 00:00
|
|
- cron: 45 3 * * *
|
|
name: Semgrep
|
|
jobs:
|
|
semgrep:
|
|
name: Scan
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
|
|
container:
|
|
image: returntocorp/semgrep
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: semgrep ci
|