We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7d3768c + f60ed12 commit 463dc53Copy full SHA for 463dc53
.github/workflows/basics.yml
@@ -33,10 +33,15 @@ jobs:
33
coverage: none
34
tools: cs2pr
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
+
43
- name: Install xmllint
- run: |
- sudo apt-get update
- sudo apt-get install --no-install-recommends -y libxml2-utils
44
+ run: sudo apt-get install --no-install-recommends -y libxml2-utils
45
46
# Show XML violations inline in the file diff.
47
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
0 commit comments