e6ebbc4fe2
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.21.4 to 2.21.5. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2.21.4...v2.21.5) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
954 B
YAML
36 lines
954 B
YAML
name: Trivy
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
|
|
analysis:
|
|
name: Vulnerability scanner for nightly containers
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'keycloak/keycloak'
|
|
strategy:
|
|
matrix:
|
|
container: [keycloak, keycloak-operator]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Run Trivy vulnerability scanner
|
|
uses: aquasecurity/trivy-action@41f05d9ecffa2ed3f1580af306000f734b733e54
|
|
with:
|
|
image-ref: quay.io/keycloak/${{ matrix.container}}:nightly
|
|
format: template
|
|
template: '@/contrib/sarif.tpl'
|
|
output: trivy-results.sarif
|
|
severity: MEDIUM,CRITICAL,HIGH
|
|
ignore-unfixed: true
|
|
security-checks: vuln
|
|
timeout: 15m
|
|
|
|
- name: Upload Trivy scan results to GitHub Security tab
|
|
uses: github/codeql-action/upload-sarif@v2.21.5
|
|
with:
|
|
sarif_file: trivy-results.sarif
|