-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Downgrades are being proposed #20
Comments
Hi @FriedrichFroebel, Thanks for reporting this issue.
This is a known problem. This is happening because this action uses GitHub's Latest Release API which returns the Latest Release Published by the repository, which sometimes may not be the latest version available for the action (e.g: if the repository is maintaining multiple versions at the same time
The Action Currently Supports Tags Only (will support commit SHA (from default branch or latest release Tag) in the near future. #19). There is no plan for suggesting branches.
This behavior is intentional. This Action will not suggest moving versions rather it will suggest specific versions. |
Thanks for the explanations. In my opinion, these limits should be mentioned somewhere in the docs as well, as otherwise one will just stumble upon them when actually trying to use them. |
Fixed on #19 |
Awesome, thanks a lot :) |
There seems to be something off with resolving the actual version changes:
The specific issues I see here:
v2.5.0
is considered more recent than versionv3
foractions/checkout
.v0.5.6
is considered more recent thanmain
, althoughmain
references the latest unreleased code from the default branch.v4.3.0
is being proposed for the short syntaxv4
, although I would assume thatv4
will always use the latest release of thev4
major version (currently beingv4.3.0
foractions/setup-python
). I am not sure about this though, as I could not find any information on which version is being picked by GitHub Actions in this case.The text was updated successfully, but these errors were encountered: