Allan Capistrano
Allan Capistrano
I had the same issue and solved it using the following commands: ```powershell sudo apt install libffi-dev libncurses5-dev zlib1g zlib1g-dev ``` ```powershell sudo apt install libssl-dev ``` ```powershell sudo apt...
Thanks! @sachsgit
I fixed it creating a [personal token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token), adding it to [repo secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) and using ```${{ secrets.MY_TOKEN }}``` in my actions file.
Waiting on a fix.