Skip to content

Commit c3d69ff

Browse files
committed
Auto-yes for apt-get
For some reason works automatically on GitHub hosted runners, but not for self-hosted. Magic strikes again \o/
1 parent c4ecbc3 commit c3d69ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222

2323
- name: Install dependencies
24-
run: apt-get update && apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
24+
run: apt-get update && apt-get install --yes --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
2525

2626
- name: Install Rust toolchain
2727
uses: actions-rs/toolchain@v1

.github/workflows/wasm-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Checkout
3232
uses: actions/checkout@v4
3333
- name: Install dependencies
34-
run: apt-get update; apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev build-essential binaryen
34+
run: apt-get update; apt-get install --yes --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev build-essential binaryen
3535
- name: Install nightly
3636
uses: actions-rs/toolchain@v1
3737
with:

0 commit comments

Comments
 (0)