Skip to content

DEVOPS-20230 Update execute_runner.sh #31

DEVOPS-20230 Update execute_runner.sh

DEVOPS-20230 Update execute_runner.sh #31

Workflow file for this run

name: Build EE2 Docker Image
on:
pull_request
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build
uses: docker/build-push-action@v6
with:
push: false
tags: 'docker.io/kbase/ee2:${{ github.sha }}'
-
name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@0.28.0
with:
image-ref: 'docker.io/kbase/ee2:${{ github.sha }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'