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
Is there a way to use Trivy without a docker image? We just want to scan the terraform that is the given repository.
However in the action.yml the image-ref is marked as required.
image-ref
The text was updated successfully, but these errors were encountered:
It is not required actually. I have Github Actions extension in VS Code and it complains about it too.
But we don't use that and it works. So I think it should be changed to not-required actually.
trivy-config-scan: name: trivy config scan runs-on: ubuntu-latest steps: - name: Create .trivyignore file run: echo '${{ vars.TRIVY_IGNORE }}' > .trivyignore - uses: aquasecurity/trivy-action@0.11.2 with: scan-type: config exit-code: '1' severity: HIGH,CRITICAL trivyignores: .trivyignore
Sorry, something went wrong.
No branches or pull requests
Is there a way to use Trivy without a docker image?
We just want to scan the terraform that is the given repository.
However in the action.yml the
image-ref
is marked as required.The text was updated successfully, but these errors were encountered: