Skip to content

Commit

Permalink
Merge pull request #16 from OpenVisualCloud/wangjingz-patch-3-1
Browse files Browse the repository at this point in the history
Create trivy.yml
  • Loading branch information
wangjingz authored Nov 29, 2024
2 parents 22ea204 + 4d6a91b commit e66123a
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Trivy-scan

on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '31 17 * * 2'
#env:
#TRIVY_JAVA_DB_REPOSITORY: github/aquasecurity/trivy-java-db:1
#TRIVY_DB_REPOSITORY: github/aquasecurity/trivy-db:2

permissions:
contents: read

jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
name: Build
runs-on: "ubuntu-22.04"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check disk space
run: df -h
- name: Build an image from Dockerfile
run: |
# docker build -t docker.io/my-organization/my-app:${{ github.sha }} .
sudo docker system prune -f
sudo docker image prune -f
sudo docker container prune -f
sudo mkdir -p /etc/systemd/system/docker.service.d
sudo systemctl daemon-reload
sudo systemctl restart docker
cd ./ivsr_ffmpeg_plugin
./build_docker.sh --enable_ov_patch false
- name: Check disk space
run: df -h

- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@7b7aa264d83dc58691451798b4d117d53d21edfe
env:
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db
TRIVY_JAVA_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-java-db
with:
scan-type: 'image'
image-ref: 'ffmpeg_ivsr_sdk_ov2022.3'
#format: 'template'
#template: '@/contrib/sarif.tpl'
security-checks: vuln
#cache: 'true'
format: 'sarif'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL, HIGH'
output: 'trivy-ivsr-results.sarif'

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

0 comments on commit e66123a

Please sign in to comment.