Skip to content

Commit 263987e

Browse files
authored
Merge pull request #25 from PHPCSStandards/feature/ghactions-fix-xmllint
GH Actions/CS: fix build failure
2 parents d35e5f6 + 55d0761 commit 263987e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
run: composer install --prefer-dist --no-interaction --no-progress
3636

3737
- name: Setup xmllint
38-
run: sudo apt-get install --no-install-recommends -y libxml2-utils
38+
run: |
39+
sudo apt-get update
40+
sudo apt-get install --no-install-recommends -y libxml2-utils
3941
4042
# Show violations inline in the file diff.
4143
# @link https://github.com/marketplace/actions/xmllint-problem-matcher

0 commit comments

Comments
 (0)