diff options
author | garret1317 <garret@airmail.cc> | 2025-08-24 12:39:31 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-08-24 12:47:06 +0100 |
commit | eb16055bdec43684c7322795ee6f4bddc9ffc2c4 (patch) | |
tree | 4c92854d9e3f491fad74d22b20698ec3b8755fb6 | |
parent | 4da1432900abacc270d615314475c284c60b69ae (diff) | |
download | yt-dlp-rajiko-eb16055bdec43684c7322795ee6f4bddc9ffc2c4.tar.gz yt-dlp-rajiko-eb16055bdec43684c7322795ee6f4bddc9ffc2c4.tar.bz2 yt-dlp-rajiko-eb16055bdec43684c7322795ee6f4bddc9ffc2c4.zip |
tests action: stop setup-ffmpeg getting too-new version
the version script gets version 8.0, which BtbN/FFmpeg-Builds doesn't build yet
so the download script tries to get a file that doesn't exist, and fails
if i set it to master then supposedly it won't use the version number and be fine
-rw-r--r-- | .github/workflows/download.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/download.yml b/.github/workflows/download.yml index 66274b3..2a39a3b 100644 --- a/.github/workflows/download.yml +++ b/.github/workflows/download.yml @@ -30,6 +30,8 @@ jobs: - name: install ffmpeg uses: AnimMouse/setup-ffmpeg@v1 + with: + version: master - name: get yt-dlp source (for the test_download script we override) uses: actions/checkout@v4 |