Merge pull request #104 from carlbraganza/bump-go-version-1-23-1 #128
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: | |
- main | |
# TODO: revert once https://github.com/grpc-ecosystem/grpc-health-probe/issues/230 is fixed | |
# 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.19 | |
- name: Build images from Dockerfile | |
run: | | |
make | |
docker build -t test/csi-snapshot-metadata:latest -f ./cmd/csi-snapshot-metadata/Dockerfile --output=type=docker --label revision=latest . | |
- name: Run Trivy vulnerability scanner on csi-snapshot-metadata image | |
uses: aquasecurity/trivy-action@master | |
env: | |
TRIVY_DB_REPOSITORY: "public.ecr.aws/aquasecurity/trivy-db:2" | |
with: | |
image-ref: 'test/csi-snapshot-metadata:latest' | |
format: 'table' | |
exit-code: '1' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN' |