From c3dc57f78939ef3dedf7be3900a809ca2a680075 Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Tue, 16 Jan 2024 21:16:14 +0100 Subject: [PATCH] Install sudo before updating system in the build CI --- .github/workflows/ubuntu_build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu_build.yml b/.github/workflows/ubuntu_build.yml index acfe6d3..9af03e2 100644 --- a/.github/workflows/ubuntu_build.yml +++ b/.github/workflows/ubuntu_build.yml @@ -23,7 +23,9 @@ jobs: steps: - name: Update system - run: sudo apt update && sudo apt upgrade -y + run: | + apt-get -qq install sudo + sudo apt update && sudo apt upgrade -y - uses: actions/checkout@v2 with: ref: ${{ github.ref }}