ci: run apt-get update before install

Signed-off-by: matt rice <ratmice@gmail.com>
This commit is contained in:
matt rice 2022-03-22 00:20:08 -07:00 committed by Gerwin Klein
parent 7eb7cb1f6a
commit 64970f67de

View file

@ -27,6 +27,8 @@ jobs:
name: XML Lint
runs-on: ubuntu-latest
steps:
- name: apt-get update
run: sudo apt-get update
- name: install xmllint
run: sudo apt-get install libxml2-utils
- uses: actions/checkout@v2