From c183d3b1d26fde5fcc18678e0abac67041fe1769 Mon Sep 17 00:00:00 2001 From: Benjamin O Date: Mon, 20 Jan 2020 23:33:08 -0500 Subject: [PATCH] built v2.3 --- lib/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/main.js b/lib/main.js index 08d3deca..604e0915 100644 --- a/lib/main.js +++ b/lib/main.js @@ -29,10 +29,11 @@ function run() { // Qt installer assumes basic requirements that are not installed by // default on Ubuntu. if (process.platform == "linux" && core.getInput("install-deps") == "true") { + yield exec.exec("sudo apt-get update"); yield exec.exec("sudo apt-get install build-essential libgl1-mesa-dev -y"); } yield exec.exec("pip3 install setuptools wheel"); - yield exec.exec("pip3 install \"aqtinstall==0.6.*\""); + yield exec.exec("pip3 install \"aqtinstall==0.7.*\""); const dir = (core.getInput("dir") || process.env.RUNNER_WORKSPACE) + "/Qt"; const version = core.getInput("version"); let host = core.getInput("host");