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