From ec56e4ef84fd2ad51896fdda561c06afbbb14782 Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Tue, 1 Nov 2022 10:06:44 +0200 Subject: [PATCH] [GitHub Actions] Add apt-get update --- .github/workflows/common.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index b3ede5d6..4c7e8ba4 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -185,7 +185,9 @@ jobs: # components: 'native-image' # add when starting native builds. github-token: ${{ secrets.GITHUB_TOKEN }} - name: 'Configure: Install xsltproc' - run: sudo apt-get install -q -y xsltproc + run: | + sudo apt-get update -y + sudo apt-get install -q -y xsltproc - name: 'Action: build initial dependencies' shell: bash env: