You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This action is not able to find min/max version if version constraint is written with the syntax ~> X.Y.
~> 1.3 mean: at least 1.3.0 and can accept any 1.X.Y version. It's a shortcut for >= 1.3, <2.0.0 ~> 1.3.4 mean: at least 1.3.4 and can accept any 1.3.Y version. It's a shortcut for >= 1.3.4, <1.4.0
Describe the bug
This action is not able to find min/max version if version constraint is written with the syntax
~> X.Y
.~> 1.3
mean: at least 1.3.0 and can accept any 1.X.Y version. It's a shortcut for>= 1.3, <2.0.0
~> 1.3.4
mean: at least 1.3.4 and can accept any 1.3.Y version. It's a shortcut for>= 1.3.4, <1.4.0
See: https://developer.hashicorp.com/terraform/language/expressions/version-constraints
To Reproduce
Using a
required_version
with~> 1.3
and this action find min: 1.3.0, max 1.3.9Expected behavior
The action should return min: 1.3.0 and max 1.4.6
The text was updated successfully, but these errors were encountered: