Skip to content

Bump the github-dependencies group across 1 directory with 8 updates #305

Bump the github-dependencies group across 1 directory with 8 updates

Bump the github-dependencies group across 1 directory with 8 updates #305

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@v5
with:
go-version: ^1.22.5
- name: Build an image from Dockerfile
run: |
make
docker build -t test/livenessprobe:latest -f Dockerfile --output=type=docker --label revision=latest .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'test/livenessprobe:latest'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'