From 22d813afb24fb8b168e2e17ddac343ed86c2aa86 Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Tue, 1 Jun 2021 12:25:10 -0600 Subject: [PATCH] github: Run apt update before apt install Run apt update before apt install Signed-off-by: Tom Hromatka --- .github/actions/setup-libcgroup/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/setup-libcgroup/action.yml b/.github/actions/setup-libcgroup/action.yml index f6d9dd2b..f1196971 100644 --- a/.github/actions/setup-libcgroup/action.yml +++ b/.github/actions/setup-libcgroup/action.yml @@ -24,6 +24,8 @@ description: "Install dependencies, git clone, bootstrap, configure, and make li runs: using: "composite" steps: + - run: sudo apt update + shell: bash - run: sudo apt-get install libpam-dev lcov shell: bash - run: ./bootstrap.sh -- 2.47.2