Skip to content

Commit

Permalink
apt update before install.
Browse files Browse the repository at this point in the history
Otherwise spurious errors can occur.
  • Loading branch information
fragglet committed Sep 19, 2023
1 parent 091ee4a commit 887d68e
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 @@ -41,7 +41,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt -q install valgrind
run: |
sudo apt update
sudo apt -q install valgrind
- name: configure
run: |
LDFLAGS="$CFLAGS" ./autogen.sh
Expand Down

0 comments on commit 887d68e

Please sign in to comment.