From 463121f3dc15af39d5e1fe31d6cff41e537c9a5a Mon Sep 17 00:00:00 2001 From: alex289 Date: Mon, 20 Nov 2023 13:14:12 +0100 Subject: [PATCH] feat: Add license blacklist --- .github/license-blacklist.json | 3 +++ .github/workflows/dependency-check.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .github/license-blacklist.json diff --git a/.github/license-blacklist.json b/.github/license-blacklist.json new file mode 100644 index 0000000..b51e4d3 --- /dev/null +++ b/.github/license-blacklist.json @@ -0,0 +1,3 @@ +[ + "GPL-2" +] \ No newline at end of file diff --git a/.github/workflows/dependency-check.yml b/.github/workflows/dependency-check.yml index 6b68fa1..f22612e 100644 --- a/.github/workflows/dependency-check.yml +++ b/.github/workflows/dependency-check.yml @@ -28,7 +28,7 @@ jobs: run: | dotnet new tool-manifest dotnet tool install --local liz.tool - dotnet liz "${{ env.solutionFile }}" --suppress-progressbar + dotnet liz "${{ env.solutionFile }}" --blacklist .github/license-blacklist.json --suppress-progressbar checkVulnerabilities: runs-on: ubuntu-latest