Skip to content

Commit 299137d

Browse files
committed
Fix CI failure due to missing apt update
1 parent 9704ff4 commit 299137d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
- name: Build the exploit
2121
run: make
2222
- name: Install QEMU
23-
run: sudo apt-get install -y qemu-system-x86-64
23+
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y qemu-system-x86-64
2426
- name: Run the exploit
2527
id: test
2628
continue-on-error: true

0 commit comments

Comments
 (0)