From 06fbf277e4536eddcf4eb61d9ae190b2a2a6634d Mon Sep 17 00:00:00 2001 From: Joshua Sing Date: Fri, 15 Dec 2023 16:25:26 +1100 Subject: [PATCH] ci: fix apt commands in solaris workflow --- .github/workflows/solaris.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/solaris.yml b/.github/workflows/solaris.yml index 415ff1fd89..2c6ee49ad4 100644 --- a/.github/workflows/solaris.yml +++ b/.github/workflows/solaris.yml @@ -18,7 +18,8 @@ jobs: - name: "Setup" run: | - apt-get install automake autoconf libtool + sudo apt-get update + sudo apt-get install -y automake autoconf libtool ./autogen.sh - name: "Build on VM"