Skip to content

Commit a7e8fc0

Browse files
committed
GH Actions/CS: fix build failure
Fix failing installation of the xmllint tooling.
1 parent 3722b8f commit a7e8fc0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/cs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
uses: "ramsey/composer-install@v2"
4747

4848
- name: Install xmllint
49-
run: sudo apt-get install --no-install-recommends -y libxml2-utils
49+
run: |
50+
sudo apt-get update
51+
sudo apt-get install --no-install-recommends -y libxml2-utils
5052
5153
# Show XML violations inline in the file diff.
5254
# @link https://github.com/marketplace/actions/xmllint-problem-matcher

0 commit comments

Comments
 (0)