From d07cd585496180a68d047f1ba038777f72b451ce Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 19 Mar 2022 08:56:48 +0100 Subject: [PATCH] GH Actions/CS: fix build failure Fix failing installation of the xmllint tooling. --- .github/workflows/basics.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/basics.yml b/.github/workflows/basics.yml index d04acb53..498fd522 100644 --- a/.github/workflows/basics.yml +++ b/.github/workflows/basics.yml @@ -33,7 +33,9 @@ jobs: tools: cs2pr - name: Install xmllint - run: sudo apt-get install --no-install-recommends -y libxml2-utils + run: | + sudo apt-get update + sudo apt-get install --no-install-recommends -y libxml2-utils # Show XML violations inline in the file diff. # @link https://github.com/marketplace/actions/xmllint-problem-matcher