-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: adding docker scanning github action workflow #274
Merged
abiju-czi
merged 11 commits into
main
from
abiju/adding-linux-container-scanning-workflow
Jul 11, 2024
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
eead4c3
feat: adding docker scanning github action workflow
abiju-czi 1ce88b6
updating inputs
abiju-czi 6fd73e9
make into action
abiju-czi 6827f96
add ability to not fail
abiju-czi bf3a2fa
remove typo
abiju-czi 6a44134
if statement
abiju-czi f3ce779
adding if
abiju-czi 71e933c
Update .github/actions/container-scanning/action.yml
abiju-czi 87fd71f
updating image tag to uri
abiju-czi 14912aa
image uri
abiju-czi 254a73f
Merge branch 'main' into abiju/adding-linux-container-scanning-workflow
hspitzley-czi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Container Scanning | ||
description: 'A GitHub Action to scan a container image for security vulnerabilities that follows CZI Best Practices' | ||
inputs: | ||
image_uri: | ||
description: 'which image to scan' | ||
required: true | ||
critical_threshold: | ||
description: 'number of critical vulnerabilities that will cause the action to fail' | ||
required: false | ||
default: "1" | ||
high_threshold: | ||
description: 'number of high vulnerabilities that will cause the action to fail' | ||
required: false | ||
default: "1" | ||
medium_threshold: | ||
description: 'number of medium vulnerabilities that will cause the action to fail' | ||
required: false | ||
default: "10" | ||
low_threshold: | ||
description: 'number of low vulnerabilities that will cause the action to fail' | ||
required: false | ||
default: "10" | ||
other_threshold: | ||
description: 'number of other vulnerabilities that will cause the action to fail' | ||
required: false | ||
default: "10" | ||
fail_on_vulnerabilities: | ||
description: 'whether to fail the action if vulnerabilities are found' | ||
required: false | ||
default: "true" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: aws-actions/configure-aws-credentials@v3 | ||
with: | ||
aws-region: us-west-2 | ||
role-to-assume: arn:aws:iam::871040364337:role/ci/github-actions-inspector | ||
role-duration-seconds: 1800 | ||
role-session-name: github-actions-inspector | ||
- name: Scan built image with Inspector | ||
uses: aws-actions/[email protected] | ||
id: inspector | ||
with: | ||
artifact_type: 'container' | ||
artifact_path: ${{ inputs.image_uri }} # make sure this matches the image you built | ||
critical_threshold: ${{ inputs.critical_threshold }} | ||
high_threshold: ${{ inputs.high_threshold }} | ||
medium_threshold: ${{ inputs.medium_threshold }} | ||
low_threshold: ${{ inputs.low_threshold }} | ||
other_threshold: ${{ inputs.other_threshold }} | ||
display_vulnerability_findings: "enabled" | ||
- name: Display Inspector vulnerability scan results (markdown) | ||
shell: bash | ||
run: cat ${{ steps.inspector.outputs.inspector_scan_results_markdown }} | ||
- name: Fail job if vulnerability threshold is exceeded | ||
if: contains(inputs.fail_on_vulnerabilities, 'true') | ||
shell: bash | ||
run: exit ${{ steps.inspector.outputs.vulnerability_threshold_exceeded }} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this supposed to be the sec account or should it be core-platform-prod (where the images are pushed)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is independent of accounts. It scans the image that's built in the pipeline. So I am using the sec account