Skip to content

Commit

Permalink
ci: Set advanced setup for Code QL workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AntiD2ta authored Oct 6, 2024
1 parent 8994dad commit a0ee31a
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/codeql-adv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CodeQL SAST
on:
push:
branches:
- develop
pull_request:
schedule:
- cron: "23 9 * * 3"
workflow_dispatch:

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
packages: read
security-events: write

strategy:
fail-fast: false
matrix:
include:
- language: ["go"]
build-mode: autobuild

steps:
- name: Checkout repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 #v4.2.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@5618c9fc1e675841ca52c1c6b1304f5255a905a0 #v2.19.0
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}

- name: Autobuild
uses: github/codeql-action/autobuild@5618c9fc1e675841ca52c1c6b1304f5255a905a0 #v2.19.0

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

0 comments on commit a0ee31a

Please sign in to comment.