Skip to content

Commit 283c8d6

Browse files
committed
Fix github action (now it should run before merging).
1 parent ce7fbe5 commit 283c8d6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
steps:
3131
- name: Install container prerequisites
3232
if: matrix.container
33-
run: apt-get update && apt-get install -y git
33+
run: apt-get update && apt-get install -y git sudo
3434

3535
- uses: actions/checkout@v4
3636

3737
- name: Install dependencies
3838
run: |
39-
apt-get update
40-
apt-get install -y \
39+
sudo apt-get update
40+
sudo apt-get install -y \
4141
autoconf \
4242
g++ \
4343
make \

0 commit comments

Comments
 (0)