Skip to content

Commit 305a9ea

Browse files
authored
changing default image tag from 'latest' (#199)
1 parent 5a4103b commit 305a9ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libraries/owasp_dep_check/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ OWASP Dependency Check Library Configuration Options
3030
| `cvss_threshold` | A number between 0 and 10, inclusive, representing the failure threshold for vulnerabilities (**note:** will never fail unless a threshold is provided) | |
3131
| `allow_suppression_file` | Allows whitelisting vulnerabilities using a suppression XML file | `true` |
3232
| `suppression_file` | Path to the suppression file (see [here](https://jeremylong.github.io/DependencyCheck/general/suppression.html) for how to create a suppression file) | `dependency-check-suppression.xml` |
33-
| `image_tag` | The tag for the scanner Docker image used | `latest` |
33+
| `image_tag` | The tag for the scanner Docker image used | `7.3.0-8.6-2` |
3434

3535
## Example Configuration Snippet
3636

libraries/owasp_dep_check/steps/application_dependency_scan.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void call() {
2525
}
2626
}
2727

28-
String image_tag = config?.image_tag ?: "latest"
28+
String image_tag = config?.image_tag ?: "7.3.0-8.6-2"
2929
inside_sdp_image "owasp-dep-check:$image_tag", {
3030
unstash "workspace"
3131

0 commit comments

Comments
 (0)