summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryonatan miller <yonatan.miller@flatironschool.com>2019-09-02 17:07:36 +0000
committerAchilleas Pipinellis <axil@gitlab.com>2019-09-02 17:07:36 +0000
commit554f419273853002c87fa4183de13f49ee718973 (patch)
tree096b21ea9fc5b201cd3a581c0583706aeaf19740
parent62b001451bd993e365f2e10635c6d3ad669624f3 (diff)
downloadgitlab-ce-554f419273853002c87fa4183de13f49ee718973.tar.gz
Update `true` with `"true"`
Gitlab CI Linter otherwise gives error `variables config should be a hash value of key value pairs`
-rw-r--r--doc/user/application_security/dependency_scanning/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/application_security/dependency_scanning/index.md b/doc/user/application_security/dependency_scanning/index.md
index b40392e12d5..3276dc40dc0 100644
--- a/doc/user/application_security/dependency_scanning/index.md
+++ b/doc/user/application_security/dependency_scanning/index.md
@@ -77,7 +77,7 @@ like Gemnasium require sending data to GitLab central servers to analyze them:
The Gemnasium client does **NOT** send the exact package versions your project relies on.
You can disable the remote checks by [using](#customizing-the-dependency-scanning-settings)
-the `DS_DISABLE_REMOTE_CHECKS` environment variable and setting it to `true`.
+the `DS_DISABLE_REMOTE_CHECKS` environment variable and setting it to `"true"`.
## Configuration
@@ -115,7 +115,7 @@ include:
template: Dependency-Scanning.gitlab-ci.yml
variables:
- DS_DISABLE_REMOTE_CHECKS: true
+ DS_DISABLE_REMOTE_CHECKS: "true"
```
Because template is [evaluated before](../../../ci/yaml/README.md#include) the pipeline