commit:     d669505668a9a5ea550841249582589c787f6d38
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 24 15:33:26 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 24 15:42:29 2022 +0000
URL:        https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=d6695056

GH: apt-get update before installing deps

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
Closes: https://github.com/gentoo/pax-utils/pull/6
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .github/workflows/build-test-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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:

Reply via email to