In den neuen GitHub-Aktionen versuche ich, ein Paket zu installieren, um es in einem der nächsten Schritte zu verwenden.
name: CI
on: [push, pull_request]
jobs:
translations:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Install xmllint
run: apt-get install libxml2-utils
# ...
Dies schlägt jedoch mit fehl
Run apt-get install libxml2-utils
apt-get install libxml2-utils
shell: /bin/bash -e {0}
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
##[error]Process completed with exit code 100.
Was ist der beste Weg, dies zu tun? Muss es nach Docker greifen?
sudo apt-get install libxml2-utils