-
Notifications
You must be signed in to change notification settings - Fork 714
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trivy: adds maven-invoker-plugin ignoring config
Signed-off-by: Adrian Cole <[email protected]>
- Loading branch information
Adrian Cole
committed
Feb 27, 2024
1 parent
7dcd132
commit a798864
Showing
3 changed files
with
17 additions
and
0 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
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,6 @@ | ||
#!/bin/sh -ue | ||
|
||
# This script deploys a master or release version. | ||
# | ||
# See [README.md] for an explanation of this and how CI should use it. | ||
trivy -c $(dirname "$0")/trivy.yaml repo . |
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,7 @@ | ||
# As of Feb 2024, Trivy has no plans to handle maven-invoker-plugin. | ||
# Skip to reduce noise about intentional tests against old versions. | ||
# https://github.com/aquasecurity/trivy/discussions/5787 | ||
image: | ||
skip-files: | ||
- "**/src/it/*/pom.xml" | ||
- "**/target/it/*/pom.xml" |