Closed ecampidoglio closed 2 months ago
@ecampidoglio
In the case when fetching the latest version from GitHub fails for some reason (e.g. due to a network error), the action should simply fall back to the previous behavior of installing the Cake.Tool without a version number.
I am not sure I agree with it silently falling back to the installed verrsion. If you consider the current behaviour a bug, then I don't think you can make the fallback behaviour of this change the same behaviour.
@baynezy I agree with you in principle. However, there are a few things to consider here:
Given these two premises, I think that, from a practical standpoint, falling back on the original behavior is a better alternative than completely failing the build.
Background
Running the action without specifying the
--cake-version
input parameter implies installing the latest version of theCake.Tool
package. This is achieved by runningdotnet tool install
without the--version
parameter.The Problem
While this approach works fine in most cases, there's one scenario where it falls short: when the action runs on an agent where a different version of the
Cake.Tool
package is already installed.Here's an example workflow:
--cake-version
set tox.y.z
x.y.z
of theCake.Tool
is installed in the tools directory--cake-version
input parameter implying that the latest version of Cake should be usedCake.Tool
is already present in the tools directory; however, without a specific version number to compare with, it determines that it shouldn't install any new version of theCake.Tool
and runs with itProposed Solution
When running the action without the
--cake-version
input parameter, the action should go out and fetch the latest version of theCake.Tool
from the Cake releases on GitHub and use that as the version number.This way, there will always be a version number to compare with when determining whether any existing installation of the
Cake.Tool
can be used.Risks
In the case when fetching the latest version from GitHub fails for some reason (e.g. due to a network error), the action should simply fall back to the previous behavior of installing the
Cake.Tool
without a version number.