From b06af6bb8a92c6c648dc82ac04938fed89ad8f19 Mon Sep 17 00:00:00 2001 From: Thomas Leese Date: Wed, 24 Apr 2024 13:37:59 +0100 Subject: [PATCH] Don't install Microsoft packages This fixes an issue with the Microsoft repository that's not working currently, and since we don't use any Microsoft packages we can skip them. https://github.com/orgs/community/discussions/120966 --- .github/actions/prepare-app-env/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/prepare-app-env/action.yml b/.github/actions/prepare-app-env/action.yml index bd12e7c9db..724f60261a 100644 --- a/.github/actions/prepare-app-env/action.yml +++ b/.github/actions/prepare-app-env/action.yml @@ -9,8 +9,12 @@ inputs: runs: using: composite steps: + - name: Update apt + run: sudo rm /etc/apt/sources.list.d/microsoft-prod.list && sudo apt-get update + shell: bash + - name: Install libvips - run: sudo apt update && sudo apt install -y libvips + run: sudo apt install -y libvips shell: bash - name: Set up Ruby