diff --git a/server/controllers/events/testdata/null_provider_lockfile_old_version b/server/controllers/events/testdata/null_provider_lockfile_old_version index c4ebbc4fd..c47524b63 100644 --- a/server/controllers/events/testdata/null_provider_lockfile_old_version +++ b/server/controllers/events/testdata/null_provider_lockfile_old_version @@ -2,8 +2,8 @@ # Manual edits may be lost in future updates. provider "registry.terraform.io/hashicorp/null" { - version = "3.2.3" - constraints = "3.2.3" + version = "3.2.4" + constraints = "3.2.4" hashes = [ "h1:+AnORRgFbRO6qqcfaQyeX80W0eX3VmjadjnUFUJTiXo=", "h1:I0Um8UkrMUb81Fxq/dxbr3HLP2cecTH2WMJiwKSrwQY=", diff --git a/server/core/config/raw/step.go b/server/core/config/raw/step.go index f440fbc04..aec2eae1c 100644 --- a/server/core/config/raw/step.go +++ b/server/core/config/raw/step.go @@ -211,12 +211,12 @@ func (s Step) Validate() error { case []interface{}: for _, e := range t { if _, ok := e.(string); !ok { - return fmt.Errorf("%q step %q option must contain only strings, found %v", + return fmt.Errorf("%q step %q option must contain only strings, found %v\n", stepName, ShellArgsArgKey, e) } } default: - return fmt.Errorf("%q step %q option must be a string or a list of strings, found %v", + return fmt.Errorf("%q step %q option must be a string or a list of strings, found %v\n", stepName, ShellArgsArgKey, t) } delete(argMap, ShellArgsArgKey)