From abc2d8540dfeb1399c83fa3ed9ab751aff5a9a1d Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 19 Mar 2022 09:46:38 +0100 Subject: [PATCH] GH Actions/CS: fix build failure Fix failing installation of the xmllint tooling. --- .github/workflows/ruleset-checks-sniffs.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruleset-checks-sniffs.yml b/.github/workflows/ruleset-checks-sniffs.yml index 71495e9731..9d6aef3e99 100644 --- a/.github/workflows/ruleset-checks-sniffs.yml +++ b/.github/workflows/ruleset-checks-sniffs.yml @@ -54,7 +54,9 @@ jobs: uses: ramsey/composer-install@v2 - name: Install xmllint - run: sudo apt-get install 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