From ce2da247a4143fd09e030e3dd4e737cac267956f Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Fri, 5 Jul 2024 16:30:59 -0500 Subject: [PATCH] GH Actions have prompts in non-interactive mode --- .gitea/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml index 0d7c74b1..3ee90e6f 100644 --- a/.gitea/workflows/check.yml +++ b/.gitea/workflows/check.yml @@ -83,7 +83,7 @@ jobs: with: submodules: true - name: Install Dependencies - run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev - name: Install nightly uses: dtolnay/rust-toolchain@nightly - name: cargo doc @@ -100,7 +100,7 @@ jobs: with: submodules: true - name: Install Dependencies - run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev cmake - name: Install stable uses: dtolnay/rust-toolchain@stable - name: cargo install cargo-hack @@ -123,7 +123,7 @@ jobs: with: submodules: true - name: Install Dependencies - run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libasound2-dev libudev-dev - name: Install ${{ matrix.msrv }} uses: dtolnay/rust-toolchain@master with: