From 8e8a1856bcd930a302a711af994e1bff42f79eb3 Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Thu, 28 Dec 2023 22:50:47 +0100 Subject: [PATCH] Simplify Signed-off-by: Peter Lemenkov --- .github/workflows/codeql.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4b8d1332..9338d094 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -32,17 +32,14 @@ jobs: sudo apt-get update sudo apt-get install --yes build-essential cmake libpcap-dev openssl libssl-dev libgsl-dev libsctp-dev libncurses5-dev libncurses5 - - name: Build - run: cmake . -DUSE_GSL=1 -DUSE_PCAP=1 -DUSE_SSL=1 -DUSE_SCTP=1 - - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} queries: +security-and-quality - - name: Autobuild - uses: github/codeql-action/autobuild@v3 + - name: Build + run: cmake . -DUSE_GSL=1 -DUSE_PCAP=1 -DUSE_SSL=1 -DUSE_SCTP=1 run: make - name: Perform CodeQL Analysis