Commit b7b478dd authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix(gitleaks): fix Gitleaks report path

parent 72afb86d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -68,8 +68,7 @@ Depending on the security tools you launch, and their configuration, you may hav
| `DEFECTDOJO_BANDIT_REPORTS`              | path to Bandit JSON reports                                                                                                            | `bandit*.json reports/py-bandit.bandit.json`                        |
| `DEFECTDOJO_DC_GRADLE_REPORTS`           | path to Dependency Check XML reports (Gradle template)                                                                                 | `dependency-check*.xml` |
| `DEFECTDOJO_DC_REPORTS`                  | path to Dependency Check XML reports (Maven template)                                                                                  | `dependency-check*.xml`        |
| `DEFECTDOJO_GITLEAKS_REPORTS`            | path to Gitleaks JSON reports                                                                                                          | `gitleaks-report.json`                        |
| `DEFECTDOJO_HADOLINT_REPORTS`            | path to Hadolint JSON reports                                                                                                          | `hadolint-json-*.json reports/docker-hadolint-*.native.json`             |
| `DEFECTDOJO_GITLEAKS_REPORTS`            | path to Gitleaks JSON reports                                                                                                          | `gitleaks/gitleaks-report.json reports/gitleaks.native.json` || `DEFECTDOJO_HADOLINT_REPORTS`            | path to Hadolint JSON reports                                                                                                          | `hadolint-json-*.json reports/docker-hadolint-*.native.json`             |
| `DEFECTDOJO_MOBSF_REPORTS`               | path to MobSF JSON reports                                                                                                             | `mobsf*.json`                        |
| `DEFECTDOJO_NODEJSSCAN_REPORTS`          | path to NodeJSScan SARIF reports                                                                                                       | `nodejsscan-report-sarif.json`                        |
| `DEFECTDOJO_NPMAUDIT_REPORTS`            | path to NPM Audit JSON reports                                                                                                         | `npm-audit*.json`                        |
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@
    {
      "name": "DEFECTDOJO_GITLEAKS_REPORTS",
      "description": "Path to Gitleaks reports",
      "default": "gitleaks-report.json",
      "default": "gitleaks/gitleaks-report.json reports/gitleaks.native.json",
      "advanced": true
    },
    {
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ variables:

  DEFECTDOJO_DIR: "."
  DEFECTDOJO_BANDIT_REPORTS: "bandit*.json reports/py-bandit.bandit.json"
  DEFECTDOJO_GITLEAKS_REPORTS: "gitleaks-report.json"
  DEFECTDOJO_GITLEAKS_REPORTS: "gitleaks/gitleaks-report.json reports/gitleaks.native.json"
  DEFECTDOJO_NODEJSSCAN_REPORTS: "nodejsscan-report-sarif.json"
  DEFECTDOJO_NPMAUDIT_REPORTS: "npm-audit*.json"
  DEFECTDOJO_DC_REPORTS: "dependency-check*.xml"