Skip to content

Commit ff9a5c6

Browse files
authored
Merge pull request #66 from PHPCSStandards/feature/ghactions-fix-xmllint
GH Actions/CS: fix build failure
2 parents 3722b8f + a7e8fc0 commit ff9a5c6

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)