Skip to content

✨Place all rancher objects in the CAPI namespace #164

✨Place all rancher objects in the CAPI namespace

✨Place all rancher objects in the CAPI namespace #164

Workflow file for this run

name: trivy
on:
push:
branches: [ "main", "release-*" ]
pull_request:
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/checkout@v4
- name: Build an image
run: |
TAG=${{ github.sha }} ARCH=amd64 make docker-build
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@2b6a709cf9c4025c5438138008beaddbb02086f0
with:
image-ref: 'ghcr.io/rancher-sandbox/rancher-turtles-amd64:${{ 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@v2
with:
sarif_file: 'trivy-results.sarif'