Skip to content

testing pre-commit hooks #11

testing pre-commit hooks

testing pre-commit hooks #11

Workflow file for this run

name: build container
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: build Debian bullseye container
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build an image from Dockerfile
run: |
./bootstrap.sh
./configure
cd docker && make build
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'python:3.12-bullseye'
format: 'table'
exit-code: '1'
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'