chore(deps): bump the k8s group with 2 updates #1072
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v5 | |
with: | |
go-version: 1.23.1 | |
- name: Build an image from Dockerfile | |
run: | | |
export PUBLISH=true | |
export REGISTRY=test | |
export IMAGE_VERSION=latest | |
export DOCKER_CLI_EXPERIMENTAL=enabled | |
export ARCH=amd64 | |
go version | |
make nfs | |
make container-build | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
env: | |
TRIVY_DB_REPOSITORY: "public.ecr.aws/aquasecurity/trivy-db:2" | |
with: | |
image-ref: 'test/nfsplugin:latest-linux-amd64' | |
format: 'table' | |
exit-code: '1' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN' | |