From 2b998990f3ac7a52ccedbd3ba8bd4e301b6d2552 Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Tue, 15 Mar 2022 16:42:35 -0400 Subject: github: ensure we update the apt repo before we install packages Failure to update the apt repo could result in missing packages on the remote apt repo server. Signed-off-by: Paul Moore (imported from commit 7a28dfa86e684197aad2f858ed24a14d63313411) --- .github/actions/setup/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index bfbba66..3a5b65a 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -24,6 +24,8 @@ description: "Install dependencies and configure libseccomp" runs: using: "composite" steps: + - run: sudo apt-get update + shell: bash - run: sudo apt-get install -y build-essential valgrind clang-tools lcov gperf astyle codespell shell: bash - run: | -- cgit v1.2.1