# HG changeset patch # User Matt Johnston # Date 1634570720 -28800 # Node ID 03dfecca99bdbb476b12dbcacab98743383c7b87 # Parent 827cee5feb461c8d1b0a55a4d82cf99a33299b92 Use sudo for the real github action job (Wasn't required by act's runner) diff -r 827cee5feb46 -r 03dfecca99bd .github/workflows/build.yml --- 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