Skip to content

Commit 4c16448

Browse files
committed
update github workflow action
- update to v4 of checkout action to avoid node version warnings - perform apt-get update to ensure fresh package list and locations
1 parent deec272 commit 4c16448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate-xml.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout Repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Install xmllint
18-
run: sudo apt-get install -y libxml2-utils
18+
run: sudo apt-get update && apt-get install -y libxml2-utils
1919

2020
- name: Validate XML Files
2121
run: |

0 commit comments

Comments
 (0)