From 8ffc4c102a9d28358f4012d10a86fcdfd7359a52 Mon Sep 17 00:00:00 2001 From: "Joseph C. Osborn" Date: Mon, 3 Nov 2025 09:16:16 -0800 Subject: [PATCH] abandon ffmpeg action and just install -dev libraries with apt --- .github/workflows/rust.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d4433ac..c8d0a47 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,13 +14,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: FedericoCarboni/setup-ffmpeg@v3 - id: setup-ffmpeg - with: - linking-type: static - # As of version 3 of this action, builds are no longer downloaded from GitHub - # except on Windows: https://github.com/GyanD/codexffmpeg/releases. - github-token: ${{ github.server_url == 'https://github.com' && github.token || '' }} + - name: Install prerequisite libraries + run: sudo apt install -y libavcodec-dev libavformat-dev libavutil-dev - name: Rust Cache uses: Swatinem/rust-cache@v2.7.7 with: