From b2d1b6a2c253698ca1d66f4b3eaf9bf8fed93121 Mon Sep 17 00:00:00 2001 From: Tucker Shea Date: Thu, 4 Jul 2024 10:28:30 -0400 Subject: [PATCH] Use Custom Vulnix Whitelist (#39) --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index aad3524..266deee 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -78,7 +78,7 @@ jobs: - name: Scan for security issues id: security run: | - nix run nixpkgs#vulnix -- -w https://raw.githubusercontent.com/ckauhaus/nixos-vulnerability-roundup/master/whitelists/nixos-20.09.toml ./profile | tee /tmp/security.txt + nix run nixpkgs#vulnix -- -w https://raw.githubusercontent.com/tuckershea/vulnix-whitelist/main/whitelist.toml ./profile | tee /tmp/security.txt OUTPUT_SECURITY="$(cat /tmp/security.txt)" OUTPUT_SECURITY="${OUTPUT_SECURITY//'%'/'%25'}" OUTPUT_SECURITY="${OUTPUT_SECURITY//$'\n'/'%0A'}"