Skip to content

Commit

Permalink
Update apt index in GitHub workflow
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Lukas Fleischer committed Apr 15, 2023
1 parent b8b7a3a commit b0d94d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit b0d94d4

Please sign in to comment.