diff options
| author | Alexander Barton <alex@barton.de> | 2022-12-29 16:01:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-29 16:01:52 +0100 |
| commit | 1b186cf5a046d43cf1219d6fe83a86bc28088655 (patch) | |
| tree | 70da019527e9c88b117b8305294dd94a0b93611d /.github/workflows | |
| parent | b49bc98b835c699a250518f0d57cbae67d1e78f3 (diff) | |
| download | ngircd-1b186cf5a046d43cf1219d6fe83a86bc28088655.tar.gz ngircd-1b186cf5a046d43cf1219d6fe83a86bc28088655.zip | |
GitHub "ngIRCd CI" Action: Use sudo(8) when installing packages
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 262a1c9f..a8e3260b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Install packages - run: apt-get install autoconf automake build-essential expect libident-dev libpam-dev libssl-dev libwrap0-dev libz-dev pkg-config telnet + run: sudo apt-get install autoconf automake build-essential expect libident-dev libpam-dev libssl-dev libwrap0-dev libz-dev pkg-config telnet - name: Generate build system files run: ./autogen.sh - name: Configure the build system |