diff --git a/commands/actions/init.go b/commands/actions/init.go index 3108985..f84c77b 100644 --- a/commands/actions/init.go +++ b/commands/actions/init.go @@ -19,7 +19,7 @@ import ( const ( TypescriptActionsDependency = "@tenderly/actions" - TypescriptActionsDependencyVersion = "^0.1.0" + TypescriptActionsDependencyVersion = "^0.2.0" LanguageJavaScript = "javascript" LanguageTypeScript = "typescript" ) diff --git a/commands/util/packagejson/constraints.go b/commands/util/packagejson/constraints.go index 63d4714..972c323 100644 --- a/commands/util/packagejson/constraints.go +++ b/commands/util/packagejson/constraints.go @@ -25,6 +25,6 @@ var runtimesToConstraints = map[string]*Constraints{ }, "V2": { "axios": "!=1.1.3, !=1.1.2, !=1.1.1, !=1.1.0, !=1.0.0, !=1.0.0-alpha.1", - "@tenderly/actions": ">=0.1.0, <0.2.0", + "@tenderly/actions": ">=0.1.0, <=0.2.0", }, }