in https://github.com/tetratelabs/tca-action/blob/main/get-tca.sh#L59 we move the executable to the /usr/local/bin path, but not all docker images allow you to move things to this path without privilege.
for the sake of this action, we don't need to move anything to the executable path, since the execution is also encapsulated within the action and this is not an install TCA tool action.
I haven't tried performing the action with ubuntu-latest but with an image running inside a cluster I get
mv: cannot move 'tca-auth' to '/usr/local/bin/tca': Permission denied
in https://github.com/tetratelabs/tca-action/blob/main/get-tca.sh#L59 we move the executable to the
/usr/local/binpath, but not all docker images allow you to move things to this path without privilege.for the sake of this action, we don't need to move anything to the executable path, since the execution is also encapsulated within the action and this is not an
install TCA toolaction.I haven't tried performing the action with
ubuntu-latestbut with an image running inside a cluster I get