Skip to content

Commit

Permalink
update github workflow action
Browse files Browse the repository at this point in the history
- update to v4 of checkout action to avoid node version warnings
- perform apt-get update to ensure fresh package list and locations
  • Loading branch information
aforsythe committed Mar 4, 2024
1 parent deec272 commit 95a270e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/validate-xml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install xmllint
run: sudo apt-get install -y libxml2-utils
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
- name: Validate XML Files
run: |
Expand Down

0 comments on commit 95a270e

Please sign in to comment.