From c86bb19c0ee66cd6ce99ea75a5c52aa7e7a9889b Mon Sep 17 00:00:00 2001 From: opencode controller Date: Wed, 1 Jul 2026 00:22:31 -0400 Subject: [PATCH] ci: drop sudo for libopus install (act job containers run as root) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e98722..1cffd55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: with: components: clippy - name: Install libopus (media crate FFI dep) - run: sudo apt-get update && sudo apt-get install -y libopus-dev + run: apt-get update && apt-get install -y libopus-dev - uses: Swatinem/rust-cache@v2 - run: cargo clippy --all -- -D warnings @@ -44,7 +44,7 @@ jobs: with: toolchain: ${{ matrix.toolchain }} - name: Install libopus (media crate FFI dep) - run: sudo apt-get update && sudo apt-get install -y libopus-dev + run: apt-get update && apt-get install -y libopus-dev - uses: Swatinem/rust-cache@v2 - run: cargo test --all