Open kimxogus opened 1 year ago
Having the same issue now.
Run leafo/gh-actions-lua@35bcb06abec04ec87df82e08caa84d545348536e
Notice: gh-actions-lua: No cache available, clean build
/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /runner/_work/_temp/.lua-build -f /runner/_work/_temp/[5](https://github.com/hashgraph/hedera-the-graph/actions/runs/8854400625/job/24317349769#step:7:5)[5](https://github.com/hashgraph/hedera-the-graph/actions/runs/8854400625/job/24317349769#step:7:6)5254e7-5fd6-45a2-bc05-90f5573c555f
/usr/bin/sudo apt-get install -q libreadline-dev libncurses-dev
sudo: apt-get: command not found
Error: Failed to install Lua: Error: The process '/usr/bin/sudo' failed with exit code 1
We are using self-hosted runner which uses custom runner image based on https://github.com/actions/actions-runner-controller .
sudo apt-get
command fails in our runners(error logs below).It seems we can't avoid that
sudo apt-get
, we can't use this action.Can you resolve this issue?
Possible solution is to make the command to use bash shell like `bash -c 'sudo apt-get ...' (not sure that would work)