We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to make the trivy azure devops plugin work on azure devops :
with the following config
It seem it don't scan my build/libs folder
When i configure the following task :
Can someone give me insight to make the plugin work for scanning a folder that contains war file with java dependencies ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to make the trivy azure devops plugin work on azure devops :
with the following config
displayName: Trivy MKP Plugin
inputs:
docker: false
path: '$(System.DefaultWorkingDirectory)/build/libs/'
devMode: true
version: 'v0.48.1'
severities: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'
exitCode : 0
debug: true
options: --version --debug
It seem it don't scan my build/libs folder
When i configure the following task :
curl -fsSLo trivy https://github.com/aquasecurity/trivy/releases/download/v0.48.1/trivy_0.48.1_Linux-64bit.deb
sudo dpkg -i trivy
trivy --version
trivy rootfs --debug ./build/libs
displayName: 'Run Trivy Scan'
I do have a scan on my build/libs that contain a war file (but not the report tabs)
Can someone give me insight to make the plugin work for scanning a folder that contains war file with java dependencies ?
The text was updated successfully, but these errors were encountered: