mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-24 12:04:13 -08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.5.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3.5.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... 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@v3.5.3
|
|
|
|
- name: Run Trivy vulnerability scanner and create GitHub issues
|
|
uses: knqyf263/trivy-issue-action@v0.0.5
|
|
with:
|
|
assignee: knqyf263
|
|
severity: CRITICAL
|
|
skip-dirs: integration,examples,pkg
|
|
label: kind/security
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |