What repo do I need to add for Chrome updates? [duplicate]

At some point during one update or another, whatever it was that made sure I got Chrome updates were disabled. What do I need to add in 20.04 to get Chrome updates again?


Setup key with:

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 

Setup repository with:

sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'

Setup package with:

sudo apt-get update 
sudo apt install google-chrome-stable