You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to customize the analyzer varies depending on the enablement solution.
377
+
378
+
{{< alert type="warning" >}}
379
+
380
+
Test all customization of GitLab analyzers in a merge request before merging these changes to the
381
+
default branch. Failure to do so can give unexpected results, including a large number of false
382
+
positives.
383
+
384
+
{{< /alert >}}
385
+
386
+
### Customizing behavior with the CI/CD template
387
+
388
+
When using the `latest` Dependency Scanning CI/CD template `Dependency-Scanning.latest.gitlab-ci.yml` or [Scan Execution Policies](../../policies/scan_execution_policies.md) please use [CI/CD variables](#available-cicd-variables).
389
+
390
+
#### Available CI/CD variables
391
+
392
+
The following variables allow configuration of global dependency scanning settings.
393
+
394
+
| CI/CD variables | Description |
395
+
| ----------------------------|------------ |
396
+
| `DS_EXCLUDED_ANALYZERS` | Specify the analyzers (by name) to exclude from Dependency Scanning. |
397
+
| `DS_EXCLUDED_PATHS` | Exclude files and directories from the scan based on the paths. A comma-separated list of patterns. Patterns can be globs (see [`doublestar.Match`](https://pkg.go.dev/github.com/bmatcuk/doublestar/[email protected]#Match) for supported patterns), or file or folder paths (for example, `doc,spec`). Parent directories also match patterns. This is a pre-filter which is applied _before_ the scan is executed. Default: `"spec, test, tests, tmp"`. |
398
+
| `DS_MAX_DEPTH` | Defines how many directory levels deep that the analyzer should search for supported files to scan. A value of `-1` scans all directories regardless of depth. Default: `2`. |
399
+
| `DS_INCLUDE_DEV_DEPENDENCIES` | When set to `"false"`, development dependencies are not reported. Only projects using Composer, Conda, Gradle, Maven, npm, pnpm, Pipenv, Poetry, or uv are supported. Default: `"true"`|
400
+
| `DS_PIPCOMPILE_REQUIREMENTS_FILE_NAME_PATTERN` | Defines which requirement files to process using glob pattern matching (for example, `requirements*.txt` or `*-requirements.txt`). The pattern should match filenames only, not directory paths. See [glob pattern documentation](https://github.com/bmatcuk/doublestar/tree/v1?tab=readme-ov-file#patterns) for syntax details. |
401
+
| `SECURE_ANALYZERS_PREFIX` | Override the name of the Docker registry providing the official default images (proxy). |
402
+
403
+
#### Overriding dependency scanning jobs
404
+
405
+
To override a job definition declare a new job with the same name as the one to override.
406
+
Place this new job after the template inclusion and specify any additional keys under it.
407
+
For example, this configures the `dependencies: []` attribute for the dependency-scanning job:
When using the Dependency Scanning CI/CD component, the analyzer can be customized by configuring the [inputs](https://gitlab.com/explore/catalog/components/dependency-scanning).
0 commit comments