Skip to content

Merge pull request #17 from buttahtoast/dependabot/github_actions/aqu… #40

Merge pull request #17 from buttahtoast/dependabot/github_actions/aqu…

Merge pull request #17 from buttahtoast/dependabot/github_actions/aqu… #40

Workflow file for this run

name: Build images
permissions: {}
on:
push:
branches:
- '*'
pull_request:
branches: [ "master", "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-images:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: ko build
run: VERSION=${{ github.ref_name }} REPOSITORY=${GITHUB_REPOSITORY} make ko-build-all
- name: Trivy Scan Image
uses: aquasecurity/trivy-action@22d2755f774d925b191a185b74e782a4b0638a41 # v0.15.0
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'sarif'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'