From 42b8e3141a99c24142599d1e668e3c62316ed0b0 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Mon, 23 Feb 2026 18:49:15 -0800 Subject: [PATCH] Add Vulkan and shaderc packages to security workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CodeQL and sanitizer jobs were missing libvulkan-dev, vulkan-tools, and glslc — same fix as the build workflow. --- .github/workflows/security.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 8dd2183d..91296a97 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -36,6 +36,9 @@ jobs: libglm-dev \ libssl-dev \ zlib1g-dev \ + libvulkan-dev \ + vulkan-tools \ + glslc \ libavformat-dev \ libavcodec-dev \ libswscale-dev \ @@ -105,6 +108,9 @@ jobs: libglm-dev \ libssl-dev \ zlib1g-dev \ + libvulkan-dev \ + vulkan-tools \ + glslc \ libavformat-dev \ libavcodec-dev \ libswscale-dev \