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