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 c2ef265 commit 61c82ed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install pcap
run: sudo apt install libpcap-dev
run: |
sudo apt update
sudo apt install libpcap-dev
- name: Set up Go
uses: actions/setup-go@v4
Expand Down

0 comments on commit 61c82ed

Please sign in to comment.