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:
2828 - name : Checkout code
2929 uses : actions/checkout@v4
3030
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+
3138 - 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
3540
3641 - name : Retrieve XML Schema
3742 run : curl -O https://www.w3.org/2012/04/XMLSchema.xsd
You can’t perform that action at this time.
0 commit comments