From 9fbf1b34d5aa34c5774b56247ddd9ae96145f767 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Tue, 11 Oct 2022 16:02:33 -0400 Subject: [PATCH] Updating the repo the azure cli is installed from CircleCI is now using Ubuntu 20.04 for the Go 1.18 image. The azure CLI is expecting a version older than that. This change updates. Note, we have been using the debian name for the repo rather than the ubuntu name. bullseye maps to Ubuntu 20.04 through 21.10. Signed-off-by: Matt Farina --- .circleci/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/deploy.sh b/.circleci/deploy.sh index f6a0b121c..295c1d476 100755 --- a/.circleci/deploy.sh +++ b/.circleci/deploy.sh @@ -34,7 +34,7 @@ else fi echo "Installing Azure CLI" -echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ stretch main" | sudo tee /etc/apt/sources.list.d/azure-cli.list +echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ bullseye main" | sudo tee /etc/apt/sources.list.d/azure-cli.list curl -L https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add sudo apt install apt-transport-https sudo apt update