From f5682e6323b363c711f6b7dc66f6bed0e0e227dc Mon Sep 17 00:00:00 2001 From: Gabriel Adrian Samfira Date: Wed, 24 Apr 2024 11:30:15 +0000 Subject: [PATCH] Work around actions/runner-images#7210 Signed-off-by: Gabriel Adrian Samfira --- .github/workflows/integration-tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 19264582..200485aa 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Golang uses: actions/setup-go@v3 @@ -20,7 +20,9 @@ jobs: uses: canonical/setup-lxd@v0.1.1 - name: Install dependencies - run: sudo apt-get -qq update && sudo apt-get -qq install -y apg coreutils make + run: | + sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list + sudo apt-get -qq update && sudo apt-get -qq install -y apg coreutils make - name: Set up ngrok id: ngrok