mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-24 12:04:13 -08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
576 B
YAML
23 lines
576 B
YAML
name: Scan vulnerabilities
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Scan Go vulnerabilities
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4.1.6
|
|
|
|
- name: Run Trivy vulnerability scanner and create GitHub issues
|
|
uses: knqyf263/trivy-issue-action@v0.0.6
|
|
with:
|
|
assignee: knqyf263
|
|
severity: CRITICAL
|
|
skip-dirs: integration,examples,pkg
|
|
label: kind/security
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |