From 33714006c1a9b42e320393975c773b2ba5c450bb Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Fri, 9 Jul 2021 23:37:12 +0200 Subject: [PATCH] Update main.js --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 844c33a..a6a17bc 100644 --- a/main.js +++ b/main.js @@ -68,7 +68,7 @@ async function main() { if (cpuArchitecture != "amd64") { core.startGroup("Install QEMU") - await exec.exec("sudo", ["apt-get", "install", "-y", "qemu", "binfmt-support", "qemu-user-static"]) + // Need newer QEMU to avoid errors await exec.exec("wget", ["http://mirrors.kernel.org/ubuntu/pool/universe/q/qemu/qemu-user-static_5.2+dfsg-9ubuntu2_amd64.deb", "-O", "/tmp/qemu.deb"]) await exec.exec("sudo", ["dpkg", "-i", "/tmp/qemu.deb"]) core.endGroup()