name: "Trivy Scan" on: pull_request: branches: [ master ] permissions: contents: read jobs: images: name: Image Scan runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 - name: Build Vela Core image from Dockerfile run: | docker build --build-arg GOPROXY=https://proxy.golang.org -t docker.io/oamdev/vela-core:${{ github.sha }} . - name: Run Trivy vulnerability scanner for vela core uses: aquasecurity/trivy-action@d9cd5b1c23aaf8cb31bb09141028215828364bbb # master with: image-ref: 'docker.io/oamdev/vela-core:${{ github.sha }}' format: 'sarif' output: 'trivy-results.sarif' - name: Upload Trivy scan results to GitHub Security tab uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5 if: always() with: sarif_file: 'trivy-results.sarif'