Skip to content

K8SPXC-1293: Fix hanging mysqlbinlog in case proxy protocol enabled #1328

K8SPXC-1293: Fix hanging mysqlbinlog in case proxy protocol enabled

K8SPXC-1293: Fix hanging mysqlbinlog in case proxy protocol enabled #1328

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-xtradb-cluster-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-xtradb-cluster-operator:${{ github.sha }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'