diff --git a/plugin/converter/starlark_oss.go b/plugin/converter/starlark_oss.go index 8fce33cc5..865d9b6c5 100644 --- a/plugin/converter/starlark_oss.go +++ b/plugin/converter/starlark_oss.go @@ -18,6 +18,6 @@ package converter import "github.com/drone/drone/core" -func Starlark(enabled bool) core.ConvertService { +func Starlark(enabled bool, stepLimit uint64) core.ConvertService { return new(noop) } diff --git a/plugin/converter/template_oss.go b/plugin/converter/template_oss.go index 7c57ff623..f1b604e8e 100644 --- a/plugin/converter/template_oss.go +++ b/plugin/converter/template_oss.go @@ -22,7 +22,7 @@ import ( "github.com/drone/drone/core" ) -func Template(templateStore core.TemplateStore) core.ConvertService { +func Template(templateStore core.TemplateStore, stepLimit uint64) core.ConvertService { return &templatePlugin{ templateStore: templateStore, }