Skip to content

Commit 952b41d

Browse files
committed
Refresh apt cache before installing OpENer build deps
The hosted runner's apt index pinned libcap-dev to 2.66-5ubuntu2.2, but the noble-updates mirror only carries a newer revision now, so the install aborted with a 404 and exit code 100 before OpENer could build. Run `apt-get update` first so the index points at versions the mirror actually has.
1 parent de1ce28 commit 952b41d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- run: npm run test
1919
working-directory: node-drivers
2020

21-
- run: sudo apt-get install -y cmake binutils libcap-dev
21+
- run: sudo apt-get update && sudo apt-get install -y cmake binutils libcap-dev
2222

2323
- uses: actions/checkout@v4
2424
with:

0 commit comments

Comments
 (0)