From ad386a1314b15a7207509d4098d43753458c6a64 Mon Sep 17 00:00:00 2001 From: LouD Date: Fri, 5 Jan 2024 18:53:04 +0100 Subject: [PATCH] Fix for public key is not available See https://github.com/nanasess/setup-chromedriver/issues/263 --- lib/setup-chromedriver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setup-chromedriver.sh b/lib/setup-chromedriver.sh index f1fe6a9c..d91db6dc 100755 --- a/lib/setup-chromedriver.sh +++ b/lib/setup-chromedriver.sh @@ -15,7 +15,7 @@ if [[ "${ARCH}" =~ ^linux64 ]]; then APP="${CHROMEAPP}" if command -v dpkg &>/dev/null; then if ! dpkg -s "${APP}" >/dev/null; then - ${sudo} apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A040830F7FAC5991 + ${sudo} apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4EB27DB2A3B88B8B echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" | ${sudo} tee /etc/apt/sources.list.d/google.list >/dev/null APP=google-chrome-stable fi