diff options
author | Robert Göhler <github@ghlr.de> | 2023-11-07 21:08:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 21:08:18 +0100 |
commit | 3a047555624e51f3d352fccc42f2435d01e9f240 (patch) | |
tree | fd9e7cfd3773922c443b39b7cd84622bbf2664ff | |
parent | 67784145f3f56ed5d49363166e61ba761fe8c942 (diff) | |
download | vyos-documentation-3a047555624e51f3d352fccc42f2435d01e9f240.tar.gz vyos-documentation-3a047555624e51f3d352fccc42f2435d01e9f240.zip |
github action lxml fix dependencies
-rw-r--r-- | .github/workflows/update-translations.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/update-translations.yml b/.github/workflows/update-translations.yml index 395bdcdf..3d70a6de 100644 --- a/.github/workflows/update-translations.yml +++ b/.github/workflows/update-translations.yml @@ -20,7 +20,7 @@ jobs: - name: install lxml dependencies run: | sudo apt update - sudo apt install -y python3-lxml + sudo apt install -y libxml2-dev libxslt-dev python3-lxml - name: Install Dev Dependencies run: | |