mirror of https://github.com/synctv-org/synctv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
565 B
YAML
34 lines
565 B
YAML
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@v4
|
|
- run: semgrep ci
|