Skip to content

Commit 37ccd66

Browse files
author
GitLab Bot
committed
Add latest changes from gitlab-org/gitlab@master
1 parent f802590 commit 37ccd66

File tree

3 files changed

+54
-8
lines changed

3 files changed

+54
-8
lines changed

doc/user/application_security/dependency_scanning/dependency_scanning_sbom/_index.md

+44-2
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,50 @@ build:
373373

374374
## Customizing analyzer behavior
375375

376-
The analyzer can be customized by configuring the CI/CD component's
377-
[inputs](https://gitlab.com/explore/catalog/components/dependency-scanning).
376+
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:
408+
409+
```yaml
410+
include:
411+
- template: Jobs/Dependency-Scanning.gitlab-ci.yml
412+
413+
dependency-scanning:
414+
dependencies: ["build"]
415+
```
416+
417+
### Customizing behavior with the CI/CD component
418+
419+
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).
378420

379421
## Output
380422

doc/user/application_security/dependency_scanning/migration_guide_to_sbom_based_scans.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,6 @@ Unless these are also used to configure other security analyzers (for example, `
468468
Remove the following CI/CD variables from your CI/CD configuration:
469469

470470
- `ADDITIONAL_CA_CERT_BUNDLE`
471-
- `DS_EXCLUDED_ANALYZERS`
472471
- `DS_GRADLE_RESOLUTION_POLICY`
473472
- `DS_IMAGE_SUFFIX`
474473
- `DS_JAVA_VERSION`
@@ -496,6 +495,7 @@ Remove the following CI/CD variables from your CI/CD configuration:
496495

497496
Keep the following CI/CD variables as they are applicable to the new Dependency Scanning analyzer:
498497

498+
- `DS_EXCLUDED_ANALYZERS`*
499499
- `DS_EXCLUDED_PATHS`
500500
- `DS_INCLUDE_DEV_DEPENDENCIES`
501501
- `DS_MAX_DEPTH`
@@ -505,6 +505,8 @@ Keep the following CI/CD variables as they are applicable to the new Dependency
505505

506506
The `PIP_REQUIREMENTS_FILE` is replaced with `DS_PIPCOMPILE_REQUIREMENTS_FILE_NAME_PATTERN` in the new Dependency Scanning analyzer.
507507

508+
The `DS_EXCLUDED_ANALYZERS` can now contain a new value `dependency-scanning` to prevent the new Dependency Scanning analyzer job from running.
509+
508510
{{< /alert >}}
509511

510512
## Continue with the Gemnasium analyzer

spec/features/groups/import_export/connect_instance_spec.rb

+7-5
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,11 @@
8989
open_import_group
9090
end
9191

92-
it 'renders fields and button disabled' do
93-
expect(page).to have_field('GitLab source instance base URL', disabled: true)
94-
expect(page).to have_field('Personal access token', disabled: true)
95-
expect(page).to have_button('Connect instance', disabled: true)
92+
it 'does not render direct transfer section' do
93+
expect(page).not_to have_content('Import groups by direct transfer')
94+
expect(page).not_to have_field('GitLab source instance base URL')
95+
expect(page).not_to have_field('Personal access token')
96+
expect(page).not_to have_button('Connect instance')
9697
end
9798
end
9899

@@ -103,7 +104,8 @@
103104
open_import_group
104105
end
105106

106-
it 'renders fields and button enabled' do
107+
it 'renders direct transfer section with fields and button enabled' do
108+
expect(page).to have_content('Import groups by direct transfer')
107109
expect(page).to have_field('GitLab source instance base URL', disabled: false)
108110
expect(page).to have_field('Personal access token', disabled: false)
109111
expect(page).to have_button('Connect instance', disabled: false)

0 commit comments

Comments
 (0)