-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating messageing lib and docker scanning
Signed-off-by: Neil South <[email protected]>
- Loading branch information
1 parent
11721d4
commit 500b733
Showing
77 changed files
with
1,154 additions
and
489 deletions.
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 |
---|---|---|
|
@@ -433,13 +433,34 @@ jobs: | |
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
- name: Scan image with Azure Container Scan | ||
env: | ||
TRIVY_TIMEOUT_SEC: 360s | ||
uses: Azure/[email protected] | ||
# - name: Scan image with Azure Container Scan | ||
# env: | ||
# TRIVY_TIMEOUT_SEC: 360s | ||
# uses: Azure/[email protected] | ||
# if: ${{ (matrix.os == 'ubuntu-latest') }} | ||
# with: | ||
# image-name: ${{ fromJSON(steps.meta.outputs.json).tags[0] }} | ||
|
||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/trivy-action@master | ||
if: ${{ (matrix.os == 'ubuntu-latest') }} | ||
with: | ||
image-ref: ${{ fromJSON(steps.meta.outputs.json).tags[0] }} | ||
format: 'table' | ||
exit-code: '1' | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL' | ||
fail-build: true | ||
|
||
- uses: goodwithtech/dockle-action@main | ||
if: ${{ (matrix.os == 'ubuntu-latest') }} | ||
with: | ||
image-name: ${{ fromJSON(steps.meta.outputs.json).tags[0] }} | ||
image: ${{ fromJSON(steps.meta.outputs.json).tags[0] }} | ||
format: 'list' | ||
exit-code: '1' | ||
exit-level: 'warn' | ||
ignore: 'CIS-DI-0001,CIS-DI-0010,DKL-DI-0006' | ||
|
||
- name: Anchore container scan | ||
id: anchore-scan | ||
|
@@ -450,7 +471,7 @@ jobs: | |
fail-build: true | ||
severity-cutoff: critical | ||
|
||
- name: Upload Anchore scan SARIF report | ||
- name: Upload scan SARIF report | ||
uses: github/codeql-action/upload-sarif@v2 | ||
if: ${{ (matrix.os == 'ubuntu-latest') }} | ||
with: | ||
|
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.