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 @@ -28,10 +28,15 @@ jobs:
28
28
- name : Checkout code
29
29
uses : actions/checkout@v4
30
30
31
+ # Updating the lists can fail intermittently, typically after Microsoft has released a new package.
32
+ # This should not be blocking for this job, so ignore any errors from this step.
33
+ # Ref: https://github.com/dotnet/core/issues/4167
34
+ - name : Update the available packages list
35
+ continue-on-error : true
36
+ run : sudo apt-get update
37
+
31
38
- name : Install xmllint
32
- run : |
33
- sudo apt-get update
34
- sudo apt-get install --no-install-recommends -y libxml2-utils
39
+ run : sudo apt-get install --no-install-recommends -y libxml2-utils
35
40
36
41
- name : Retrieve XML Schema
37
42
run : curl -O https://www.w3.org/2012/04/XMLSchema.xsd
You can’t perform that action at this time.
0 commit comments