Skip to content

CLOUD-727: Bump k8s.io/api from 0.27.4 to 0.28.4 #1424

CLOUD-727: Bump k8s.io/api from 0.27.4 to 0.28.4

CLOUD-727: Bump k8s.io/api from 0.27.4 to 0.28.4 #1424

Workflow file for this run

name: Scan docker
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build an image from Dockerfile
run: |
export IMAGE=perconalab/percona-server-mysql-operator:${{ github.sha }}
export DOCKER_PUSH=0
export DOCKER_SQUASH=0
./e2e-tests/build
- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
image-ref: 'docker.io/perconalab/percona-server-mysql-operator:${{ github.sha }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'