Skip to content

Bump aquasecurity/trivy-action from 0.14.0 to 0.16.0 #117

Bump aquasecurity/trivy-action from 0.14.0 to 0.16.0

Bump aquasecurity/trivy-action from 0.14.0 to 0.16.0 #117

Workflow file for this run

# 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-testpmd
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '40 20 * * 4'
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-latest
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Build testpmd image
run: docker build -t testpmd:latest -f ./docker/testpmd/Dockerfile ./docker/testpmd/
- name: Testpmd Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@91713af97dc80187565512baba96e4364e983601
with:
image-ref: 'testpmd:latest'
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'testpmd-trivy-results.sarif'
severity: 'CRITICAL,HIGH'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@407ffafae6a767df3e0230c3df91b6443ae8df75 # v2.22.8
with:
sarif_file: 'testpmd-trivy-results.sarif'