From 7058661f9fb424e59bde06eec546616f100b7086 Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Wed, 27 Jun 2018 10:02:02 +0200 Subject: [PATCH] remove obsolete parameter --- vars/snykExecute.groovy | 3 --- 1 file changed, 3 deletions(-) diff --git a/vars/snykExecute.groovy b/vars/snykExecute.groovy index 3c9cabda5..6478b2e77 100644 --- a/vars/snykExecute.groovy +++ b/vars/snykExecute.groovy @@ -10,7 +10,6 @@ import groovy.transform.Field @Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus([ 'buildDescriptorFile', 'dockerImage', - 'dockerWorkspace', 'exclude', 'monitor', 'scanType', @@ -33,7 +32,6 @@ def call(Map parameters = [:]) { .mixin(parameters, PARAMETER_KEYS) // check mandatory paramerers .withMandatoryProperty('dockerImage') - .withMandatoryProperty('dockerWorkspace') .withMandatoryProperty('snykCredentialsId') .use() @@ -59,7 +57,6 @@ def call(Map parameters = [:]) { )]) { dockerExecute( dockerImage: config.dockerImage, - dockerWorkspace: config.dockerWorkspace, stashContent: config.stashContent, dockerEnvVars: ['SNYK_TOKEN': token] ) {