Skip to content

Commit d07cd58

Browse files
committed
GH Actions/CS: fix build failure
Fix failing installation of the xmllint tooling.
1 parent 42696ce commit d07cd58

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/basics.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
tools: cs2pr
3434

3535
- name: Install xmllint
36-
run: sudo apt-get install --no-install-recommends -y libxml2-utils
36+
run: |
37+
sudo apt-get update
38+
sudo apt-get install --no-install-recommends -y libxml2-utils
3739
3840
# Show XML violations inline in the file diff.
3941
# @link https://github.com/marketplace/actions/xmllint-problem-matcher

0 commit comments

Comments
 (0)