You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 2, 2023. It is now read-only.
It would be a nice option to let user configure the list of vulnerabilities to ignore as action input. this can be either inline or the path to a file that contains the list.
either:
- uses: azure/container-scan@v0with:
image-name: http://myimage:latestusername: changeitpassword: changitallowedlist: # pass the list inline
- CVE-2003-1307
- CVE-2007-0086
- CVE-2019-3462
- CVE-2011-3374
or:
- uses: azure/container-scan@v0with:
image-name: http://myimage:latestusername: changeitpassword: changitallowedlist: /path/to/allowedlist.yaml. # the file that contains the list of vulnerabilities to ignore.
Scenario 1: Using the same workflow against multiple versions of the same image, one might want to ignore some vulnerabilities in older versions but not in the latest one for example.
Scenario 2: Using the action multiple times for different images in a single repo/workflow, one might one to ignore some vulnerabilities for one image not the other ones.
It would be a nice option to let user configure the list of
vulnerabilities to ignoreas action input. this can be either inline or the path to a file that contains the list.either:
or:
Scenario 1: Using the same workflow against multiple versions of the same image, one might want to ignore some vulnerabilities in older versions but not in the latest one for example.
Scenario 2: Using the action multiple times for different images in a single repo/workflow, one might one to ignore some vulnerabilities for one image not the other ones.