.github/workflows/build.yml: run "apt-get update"

The build has been failing for a week or two because the package lists
in the image are outdated.
This commit is contained in:
Max Kellermann 2022-05-12 05:50:09 +02:00 committed by Max Kellermann
parent c6f7f57776
commit aa7b872a14
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ jobs:
key: linux
- name: Install dependencies
run: |
sudo apt install -y --no-install-recommends \
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
g++-10 libfmt-dev libboost-dev \
libgtest-dev \
libpcre2-dev \