I like Travis-CI a lot. I had been using it successfully for some time but today when I ran a build I got this error:
remote: Support for password authentication was removed on August 13, 2021
The last build I ran was in 2022 (after August 13, 2021) and that did not complain.
I am not using password for authentication. I am using a token like this:
t.remote_url = -> {
url = `git config remote.origin.url`.strip.gsub(/^git:/, 'https:')
next url.gsub(%r{^https://}, "https://#{ENV['GH_TOKEN']}@") if ENV.key? 'GH_TOKEN'
next url
}
can anyone help me fix this? why was it working before and not now?