Implement etcd snapshot restore skeleton #2678
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: trivy | |
on: | |
push: | |
branches: [ "main", "release-*" ] | |
pull_request: | |
types: [opened, edited, synchronize, reopened, labeled, unlabeled] | |
branches: [ "main" ] | |
schedule: | |
- cron: '37 1 * * *' | |
permissions: | |
contents: read | |
jobs: | |
scan: | |
permissions: | |
contents: read | |
security-events: write | |
name: Scan | |
runs-on: "ubuntu-20.04" | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Build an image | |
run: | | |
TAG=${{ github.sha }} make docker-build | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@062f2592684a31eb3aa050cc61e7ca1451cecd3d | |
with: | |
image-ref: 'ghcr.io/rancher/turtles:${{ github.sha }}' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
severity: 'CRITICAL,HIGH' | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: 'trivy-results.sarif' |