From d669505668a9a5ea550841249582589c787f6d38 Mon Sep 17 00:00:00 2001 From: WANG Xuerui Date: Thu, 24 Mar 2022 23:33:26 +0800 Subject: GH: apt-get update before installing deps Signed-off-by: WANG Xuerui Closes: https://github.com/gentoo/pax-utils/pull/6 Signed-off-by: Sam James --- .github/workflows/build-test-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml index e23f0a3..1b69cc6 100644 --- a/.github/workflows/build-test-ci.yml +++ b/.github/workflows/build-test-ci.yml @@ -22,7 +22,7 @@ jobs: CC: ${{ matrix.cc }} steps: - name: Install dependencies - run: sudo apt-get install -y python3-pyelftools + run: sudo apt-get update && sudo apt-get install -y python3-pyelftools - uses: actions/checkout@v2 # Hack up the man pages as installing xmlto is very expensive. # We'll test this in the autotools builder instead. @@ -44,7 +44,7 @@ jobs: CC: ${{ matrix.cc }} steps: - name: Install dependencies - run: sudo apt-get install -y python3-pyelftools xmlto + run: sudo apt-get update && sudo apt-get install -y python3-pyelftools xmlto - name: Checkout gnulib uses: actions/checkout@v2 with: -- cgit v1.2.3-65-gdbad