mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
31 lines
750 B
YAML
31 lines
750 B
YAML
|
name: Build devcontainer
|
||
|
|
||
|
permissions: {}
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- 'main'
|
||
|
- 'release*'
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
devcontainer-build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
||
|
- name: Build devcontainer image
|
||
|
run: docker build .devcontainer
|
||
|
- name: Trivy Scan Image
|
||
|
uses: aquasecurity/trivy-action@fbd16365eb88e12433951383f5e99bd901fc618f # v0.12.0
|
||
|
with:
|
||
|
scan-type: 'fs'
|
||
|
ignore-unfixed: true
|
||
|
format: 'sarif'
|
||
|
output: 'trivy-results.sarif'
|
||
|
severity: 'CRITICAL,HIGH'
|