File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,15 @@ jobs:
34
34
- name : Install dependencies
35
35
run : composer install --no-dev --no-interaction --no-progress
36
36
37
- - name : Setup xmllint
38
- run : |
39
- sudo apt-get update
40
- sudo apt-get install --no-install-recommends -y libxml2-utils
37
+ # Updating the lists can fail intermittently, typically after Microsoft has released a new package.
38
+ # This should not be blocking for this job, so ignore any errors from this step.
39
+ # Ref: https://github.com/dotnet/core/issues/4167
40
+ - name : Update the available packages list
41
+ continue-on-error : true
42
+ run : sudo apt-get update
43
+
44
+ - name : Install xmllint
45
+ run : sudo apt-get install --no-install-recommends -y libxml2-utils
41
46
42
47
# Show violations inline in the file diff.
43
48
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
You can’t perform that action at this time.
0 commit comments