]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Add CodeQL workflow for GitHub code scanning (#1800)
authorlgtm-com[bot] <43144390+lgtm-com[bot]@users.noreply.github.com>
Wed, 7 Dec 2022 13:48:03 +0000 (14:48 +0100)
committerGitHub <noreply@github.com>
Wed, 7 Dec 2022 13:48:03 +0000 (14:48 +0100)
Co-authored-by: LGTM Migrator <lgtm-migrator@users.noreply.github.com>
.github/workflows/codeql.yml [new file with mode: 0644]

diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644 (file)
index 0000000..1f219fc
--- /dev/null
@@ -0,0 +1,41 @@
+name: "CodeQL"
+
+on:
+  push:
+    branches: [ "master", "3.5" ]
+  pull_request:
+    branches: [ "master" ]
+  schedule:
+    - cron: "49 4 * * 2"
+
+jobs:
+  analyze:
+    name: Analyze
+    runs-on: ubuntu-latest
+    permissions:
+      actions: read
+      contents: read
+      security-events: write
+
+    strategy:
+      fail-fast: false
+      matrix:
+        language: [ cpp ]
+
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v3
+
+      - name: Initialize CodeQL
+        uses: github/codeql-action/init@v2
+        with:
+          languages: ${{ matrix.language }}
+          queries: +security-and-quality
+
+      - name: Autobuild
+        uses: github/codeql-action/autobuild@v2
+
+      - name: Perform CodeQL Analysis
+        uses: github/codeql-action/analyze@v2
+        with:
+          category: "/language:${{ matrix.language }}"