From bbfa798d7ae8462b79e4ac828df3515e83ef0ca3 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Thu, 5 Feb 2026 20:10:46 -0800 Subject: [PATCH] Update GitHub Actions workflow to include gnutls library for native dependencies - Added the installation of the `libgnutls28-dev` package to the x86_64 native dependencies setup in the release workflow, enhancing security and compatibility for multimedia processing. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f8acc333..58a91f909 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -151,7 +151,8 @@ jobs: libswresample-dev \ libva-dev \ libva-drm2 \ - libva2 + libva2 \ + libgnutls28-dev - name: Setup native dependencies (x86_64) if: matrix.settings.target == 'x86_64-unknown-linux-gnu'