Skip to content

Commit 661ddf0

Browse files
committed
Use different FFMpeg version with actions
1 parent c221aae commit 661ddf0

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/test.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010

1111
steps:
12-
- name: Install Linux packages
13-
if: matrix.os == 'ubuntu-latest'
14-
run: sudo apt install -y --no-install-recommends ffmpeg
12+
- uses: FedericoCarboni/setup-ffmpeg@v3.1
13+
id: setup-ffmpeg
14+
with:
15+
# A specific version to download, may also be "release" or a specific version
16+
# like "6.1.0". At the moment semver specifiers (i.e. >=6.1.0) are supported
17+
# only on Windows, on other platforms they are allowed but version is matched
18+
# exactly regardless.
19+
ffmpeg-version: release
1520

1621
- name: Install Go
1722
uses: actions/setup-go@v4

0 commit comments

Comments
 (0)