Mercurial > dropbear
changeset 1843:03dfecca99bd
Use sudo for the real github action job
(Wasn't required by act's runner)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 18 Oct 2021 23:25:20 +0800 |
parents | 827cee5feb46 |
children | 7a3cd7b598d8 |
files | .github/workflows/build.yml |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/.github/workflows/build.yml Mon Oct 18 23:21:52 2021 +0800 +++ b/.github/workflows/build.yml Mon Oct 18 23:25:20 2021 +0800 @@ -72,8 +72,8 @@ steps: - name: deps run: | - apt-get -y update - apt-get -y install zlib1g-dev libtomcrypt-dev libtommath-dev mercurial python3-venv socat $CC + sudo apt-get -y update + sudo apt-get -y install zlib1g-dev libtomcrypt-dev libtommath-dev mercurial python3-venv socat $CC - uses: actions/checkout@v2