diff options
author | WANG Xuerui <xen0n@gentoo.org> | 2022-03-24 23:33:26 +0800 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-24 15:42:29 +0000 |
commit | d669505668a9a5ea550841249582589c787f6d38 (patch) | |
tree | 1fd58754d8c0c7e42bd0978f2c98dec68510d846 | |
parent | paxelf: add LoongArch to recognized ELF machine types (diff) | |
download | pax-utils-d669505668a9a5ea550841249582589c787f6d38.tar.gz pax-utils-d669505668a9a5ea550841249582589c787f6d38.tar.bz2 pax-utils-d669505668a9a5ea550841249582589c787f6d38.zip |
GH: apt-get update before installing deps
Signed-off-by: WANG Xuerui <xen0n@gentoo.org>
Closes: https://github.com/gentoo/pax-utils/pull/6
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | .github/workflows/build-test-ci.yml | 4 |
1 files 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: |