From 87df7f6df79bccee83f48c4b7a8118a7636a5e66 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 27 Dec 2023 19:23:44 -0500 Subject: [PATCH] Do we still need ffmpeg in the pipeline? --- .github/workflows/pipeline.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 11ab19b69..b8bada89a 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -13,9 +13,6 @@ jobs: name: Lint Go code runs-on: ubuntu-latest steps: - - name: Update ubuntu repo - run: sudo apt-get update - - name: Install taglib run: sudo apt-get install libtag1-dev @@ -53,11 +50,8 @@ jobs: matrix: go_version: [1.21.x, 1.20.x] steps: - - name: Update ubuntu repo - run: sudo apt-get update - - name: Install taglib - run: sudo apt-get install libtag1-dev ffmpeg + run: sudo apt-get install libtag1-dev - name: Check out code into the Go module directory uses: actions/checkout@v3