From 6c5f45c9602b655a241f5309185509669e2a9fd4 Mon Sep 17 00:00:00 2001 From: Reuben Miller Date: Wed, 24 Apr 2024 13:40:11 +0200 Subject: [PATCH] ci: remove microsoft debian repo due to invalid repo Can be removed once https://github.com/microsoft/linux-package-repositories/issues/130 is resolved Signed-off-by: Reuben Miller --- .github/workflows/build-workflow.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-workflow.yml b/.github/workflows/build-workflow.yml index 9dcb8c2b537..1d2c93442d8 100644 --- a/.github/workflows/build-workflow.yml +++ b/.github/workflows/build-workflow.yml @@ -111,7 +111,10 @@ jobs: steps: - if: ${{ contains(matrix.host_os, 'ubuntu') }} - run: sudo apt-get update -y + run: | + # WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved + sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list + sudo apt-get update -y - name: Checkout uses: actions/checkout@v4 with: