Skip to content

chore(deps): bump helm/chart-testing-action from 2.4.0 to 2.6.0 #237

chore(deps): bump helm/chart-testing-action from 2.4.0 to 2.6.0

chore(deps): bump helm/chart-testing-action from 2.4.0 to 2.6.0 #237

Workflow file for this run

name: Trivy vulnerability scanner
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install go
uses: actions/setup-go@v4
with:
go-version: ^1.19
- name: Build an image from Dockerfile
run: |
export REGISTRY=test
export DOCKER_CLI_EXPERIMENTAL=enabled
export OUTPUT_TYPE=docker
make build-container-linux-amd64
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'test/local-volume-provisioner:latest_linux_amd64'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'