From 6ca8163121bf8835a8cc6966e356e8275965ccb7 Mon Sep 17 00:00:00 2001 From: stertooy <5571903+stertooy@users.noreply.github.com> Date: Mon, 13 Jul 2026 10:57:42 +0200 Subject: [PATCH] Run `apt-get update` before installing packages --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 6081fcb..b10be89 100644 --- a/action.yml +++ b/action.yml @@ -188,6 +188,7 @@ runs: shell: bash run: | if [[ "${{ runner.os }}" == "Linux" ]] && [[ -n "${SYS_PKGS_TO_BUILD}" ]]; then + sudo apt-get update sudo apt-get install --no-install-recommends ${SYS_PKGS_TO_BUILD} elif [[ "${{ runner.os }}" = "macOS" ]] && [[ -n "${SYS_PKGS_TO_BUILD}" ]]; then brew install ${SYS_PKGS_TO_BUILD}