Skip to content

Commit 1f29acc

Browse files
committed
Fix getting dependencies
1 parent 02942b2 commit 1f29acc

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ubuntu.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Print environment
15+
run: env
16+
1117
- name: Get dependencies
12-
run: apt-get update && apt-get install -yq wget debhelper
18+
run: sudo apt-get update && apt-get install -yq debhelper
1319
env:
1420
DEBIAN_FRONTEND: noninteractive
1521

16-
- name: Checkout
17-
uses: actions/checkout@v4
18-
1922
- name: Setup node
2023
uses: actions/setup-node@v4
2124
with:

0 commit comments

Comments
 (0)