Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit b7d8405

Browse files
authored
Add a missing apt-get update before install (#48)
I always forget this and it always bites us within a few months. Alas.
1 parent a43a8ba commit b7d8405

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ jobs:
588588
if: ${{ matrix.cross }}
589589
- name: Install apt packages
590590
if: ${{ matrix.apt_packages }}
591-
run: sudo apt-get install -y ${{ matrix.apt_packages }}
591+
run: sudo apt-get update && sudo apt-get install -y ${{ matrix.apt_packages }}
592592
- run: ${{ matrix.test }}
593593
env:
594594
CARGO_BUILD_TARGET: ${{ matrix.target }}

0 commit comments

Comments
 (0)