mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 08:26:53 +00:00
36 lines
848 B
YAML
36 lines
848 B
YAML
|
name: Build images
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- 'main'
|
||
|
- 'release*'
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
build-images:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
||
|
- name: Setup build env
|
||
|
uses: ./.github/actions/setup-build-env
|
||
|
with:
|
||
|
build-cache-key: build-images
|
||
|
- name: ko build
|
||
|
run: make ko-build-all
|
||
|
- name: Trivy Scan Image
|
||
|
uses: aquasecurity/trivy-action@9ab158e8597f3b310480b9a69402b419bc03dbd5 # v0.8.0
|
||
|
with:
|
||
|
scan-type: 'fs'
|
||
|
ignore-unfixed: true
|
||
|
format: 'sarif'
|
||
|
output: 'trivy-results.sarif'
|
||
|
severity: 'CRITICAL,HIGH'
|