Skip to content

Commit 79966df

Browse files
authored
Merge pull request #39 from PHPCompatibility/feature/ghactions-fix-xmllint
GH Actions/CS: fix build failure
2 parents 43c4c2c + 42c5e3d commit 79966df

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 --no-dev --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)