This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ss/feat/introduce-readyz-probe
- Loading branch information
Showing
2 changed files
with
34 additions
and
42 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 |
---|---|---|
|
@@ -27,40 +27,44 @@ jobs: | |
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: image:latest | ||
format: 'json' | ||
vuln-type: 'os,library' | ||
output: 'trivy-results.json' | ||
env: | ||
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db:2 | ||
TRIVY_JAVA_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-java-db:1 | ||
TRIVY_FORMAT: json | ||
TRIVY_OUTPUT: 'trivy-results.json' | ||
|
||
- name: Save vulnerabilities report in tabular format | ||
if: always() | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: trivy-results.json | ||
scan-ref: trivy-results.json | ||
scan-type: convert | ||
vuln-type: '' | ||
format: 'table' | ||
output: 'trivy-results.txt' | ||
env: | ||
TRIVY_FORMAT: table | ||
TRIVY_OUTPUT: 'trivy-results.txt' | ||
|
||
- name: Display vulnerabilities report | ||
if: always() | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: trivy-results.json | ||
scan-ref: trivy-results.json | ||
scan-type: convert | ||
vuln-type: '' | ||
env: | ||
TRIVY_FORMAT: table | ||
TRIVY_OUTPUT: '' | ||
|
||
- name: Fail on high and critical vulnerabilities | ||
if: always() | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: trivy-results.json | ||
scan-ref: trivy-results.json | ||
scan-type: convert | ||
exit-code: '1' | ||
vuln-type: '' | ||
severity: 'HIGH,CRITICAL' | ||
env: | ||
TRIVY_FORMAT: table | ||
TRIVY_OUTPUT: '' | ||
|
||
- name: Publish scan report | ||
if: always() | ||
|
@@ -212,35 +216,23 @@ jobs: | |
- name: Send Notification to Slack | ||
if: ${{ startsWith(github.ref, 'refs/heads/main') || startsWith(github.ref, 'refs/heads/release/') }} | ||
uses: slackapi/slack-github-action@v1.27.0 | ||
uses: slackapi/slack-github-action@v2.0.0 | ||
with: | ||
channel-id: ${{ secrets.SLACK_CHANNEL_ID }} | ||
method: chat.postMessage | ||
token: ${{ secrets.H2O_OPS_SLACK_BOT_TOKEN }} | ||
payload: | | ||
{ | ||
"text": "Trivy Vulnerability Report", | ||
"blocks": [ | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "*Java MOJO Runtime* \n_Vulnerabilities have been detected on the `${{ github.ref_name }}` branch_" | ||
} | ||
}, | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "> *Trivy :: `${{ env.TRIVY_SUMMARY }}`*\n> *Prisma :: `${{ env.PRISMA_SUMMARY }}`*" | ||
} | ||
}, | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "${{ env.CODE_OWNERS }}, please review the following reports: <https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.trivy_scan.outputs.job }}|_Trivy_>, <https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.prisma_scan.outputs.job }}|_Prisma_>" | ||
} | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.H2O_OPS_SLACK_BOT_TOKEN }} | ||
channel: ${{ secrets.SLACK_CHANNEL_ID }} | ||
text: "Trivy Vulnerability Report" | ||
blocks: | ||
- type: "section" | ||
text: | ||
type: "mrkdwn" | ||
text: "*Java MOJO Runtime* \n_Vulnerabilities have been detected on the `${{ github.ref_name }}` branch_" | ||
- type: "section" | ||
text: | ||
type: "mrkdwn" | ||
text: "> *Trivy :: `${{ env.TRIVY_SUMMARY }}`*\n> *Prisma :: `${{ env.PRISMA_SUMMARY }}`*" | ||
- type: "section" | ||
text: | ||
type: "mrkdwn" | ||
text: "${{ env.CODE_OWNERS }}, please review the following reports: <https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.trivy_scan.outputs.job }}|_Trivy_>, <https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.prisma_scan.outputs.job }}|_Prisma_>" |
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