diff options
author | Olivier Gonzalez <ogonzalez@gitlab.com> | 2018-04-10 17:07:39 -0400 |
---|---|---|
committer | Olivier Gonzalez <ogonzalez@gitlab.com> | 2018-04-10 17:07:39 -0400 |
commit | 203cff6d56fbda2b4cf89ce80524a00ba1d3e242 (patch) | |
tree | 70cd8170945c32c6c27b25e26cbda1c71ee3c181 | |
parent | c45c503e225678f0957cb51b256345a2ecf0493b (diff) | |
download | gitlab-shell-setup_security_products.tar.gz |
Fix job syntaxsetup_security_products
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdd0e40..7759390 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -105,9 +105,9 @@ dependency_scanning: script: - export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/') - docker run - --env DEP_SCAN_DISABLE_REMOTE_CHECKS="${DEP_SCAN_DISABLE_REMOTE_CHECKS:-false}" \ - --volume "$PWD:/code" \ - --volume /var/run/docker.sock:/var/run/docker.sock \ + --env DEP_SCAN_DISABLE_REMOTE_CHECKS="${DEP_SCAN_DISABLE_REMOTE_CHECKS:-false}" + --volume "$PWD:/code" + --volume /var/run/docker.sock:/var/run/docker.sock "registry.gitlab.com/gitlab-org/security-products/dependency-scanning:$SP_VERSION" /code artifacts: paths: [gl-dependency-scanning-report.json]
\ No newline at end of file |