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 @@ -53,10 +53,15 @@ jobs:
53
53
# Bust the cache at least once a month - output format: YYYY-MM.
54
54
custom-cache-suffix : $(date -u "+%Y-%m")
55
55
56
+ # Updating the lists can fail intermittently, typically after Microsoft has released a new package.
57
+ # This should not be blocking for this job, so ignore any errors from this step.
58
+ # Ref: https://github.com/dotnet/core/issues/4167
59
+ - name : Update the available packages list
60
+ continue-on-error : true
61
+ run : sudo apt-get update
62
+
56
63
- name : Install xmllint
57
- run : |
58
- sudo apt-get update
59
- sudo apt-get install --no-install-recommends -y libxml2-utils
64
+ run : sudo apt-get install --no-install-recommends -y libxml2-utils
60
65
61
66
# Show XML violations inline in the file diff.
62
67
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
You can’t perform that action at this time.
0 commit comments