Update apt index in GitHub workflow

Run `apt-get update` for Ubuntu to fix errors seen because of an
out-of-date index:

    E: Failed to fetch [...]  404  Not Found [IP: 40.119.46.219 80]
    E: Failed to fetch [...]  404  Not Found [IP: 40.119.46.219 80]
    E: Failed to fetch [...]  404  Not Found [IP: 40.119.46.219 80]

Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Lukas Fleischer 2023-04-15 13:28:00 -04:00
parent b8b7a3a734
commit b0d94d4e84

View File

@ -24,7 +24,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install dependencies (Ubuntu)
run: sudo apt-get install asciidoc autopoint gettext xmlto autoconf-archive
run: |
sudo apt-get update
sudo apt-get install asciidoc autopoint gettext xmlto autoconf-archive
if: matrix.os == 'ubuntu-latest'
- name: Install dependencies (MacOS)
run: |