We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ae2993c + 15d9d9e commit 9a0c254Copy full SHA for 9a0c254
.github/workflows/validate.yml
@@ -28,10 +28,15 @@ jobs:
28
- name: Checkout code
29
uses: actions/checkout@v4
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
+
38
- name: Install xmllint
- run: |
- sudo apt-get update
- sudo apt-get install --no-install-recommends -y libxml2-utils
39
+ run: sudo apt-get install --no-install-recommends -y libxml2-utils
40
41
- name: Retrieve XML Schema
42
run: curl -O https://www.w3.org/2012/04/XMLSchema.xsd
0 commit comments