Skip to content

Commit

Permalink
add trivy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhadfield committed Mar 16, 2024
1 parent 85ad853 commit d979450
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: "Code Scanning"

on:
push:
pull_request:
schedule:
- cron: '0 0 * * 1'
watch:
types: [started]

jobs:
Trivy-Scan:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

# - name: Build an image from Dockerfile
# run: |
# docker build -t docker.io/my-organization/my-app:${{ github.sha }} .
#
# - name: Run Trivy vulnerability scanner in docker mode
# uses: aquasecurity/trivy-action@master
# with:
# image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}'
# format: 'template'
# template: '@/contrib/sarif.tpl'
# output: 'trivy-results-docker.sarif'
# severity: 'CRITICAL'
#
# - name: Upload Trivy scan results to GitHub Security tab
# uses: github/codeql-action/upload-sarif@v1
# with:
# sarif_file: 'trivy-results-docker.sarif'

- name: Run Trivy vulnerability scanner in fs mode
uses: anandg112/trivy-action@feat/add-skip-dirs-option
with:
scan-type: 'fs'
# scan-ref: '.'
ignore-unfixed: true
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results-fs.sarif'
severity: 'CRITICAL'
skip-dirs: "ignored-dir"

# - name: Upload Trivy scan results to GitHub Security tab
# uses: github/codeql-action/upload-sarif@v1
# with:
# sarif_file: 'trivy-results-fs.sarif'

- name: DEBUG Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: 'debug-trivy-results.sarif'

0 comments on commit d979450

Please sign in to comment.