-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add container scanning to default checks
Fixes #1876 Depends On: #2121 Depends On: #2135 Signed-off-by: zondervancalvez <[email protected]>
- Loading branch information
1 parent
b910681
commit 632c5d5
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1345,7 +1345,17 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
- name: ghcr.io/hyperledger/cactus-besu-all-in-one | ||
run: DOCKER_BUILDKIT=1 docker build ./tools/docker/besu-all-in-one/ -f ./tools/docker/besu-all-in-one/Dockerfile | ||
run: DOCKER_BUILDKIT=1 docker build ./tools/docker/besu-all-in-one/ -f ./tools/docker/besu-all-in-one/Dockerfile -t cactus-besu-all-in-one | ||
- name: Run Trivy vulnerability scan for cactus-besu-all-in-one | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: 'cactus-besu-all-in-one' | ||
format: 'table' | ||
exit-code: '1' | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL,HIGH' | ||
|
||
ghcr-cmd-api-server: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
|