mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
name: "CodeQL Advanced"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '15 4 * * 1'
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
description: "Branch to scan"
|
|
default: "main"
|
|
|
|
jobs:
|
|
analyze:
|
|
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
|
|
name: Analyze (${{ matrix.language }})
|
|
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
|
|
permissions:
|
|
security-events: write
|
|
packages: read
|
|
actions: read
|
|
contents: read
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- language: actions
|
|
build-mode: none
|
|
- language: javascript-typescript
|
|
build-mode: none
|
|
|
|
steps:
|
|
- name: Checkout target branch
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.inputs.branch || 'main' }}
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v4
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
build-mode: ${{ matrix.build-mode }}
|
|
|
|
- name: Run manual build steps
|
|
if: ${{ matrix.build-mode == 'manual' }}
|
|
shell: bash
|
|
run: |
|
|
echo 'If you are using a "manual" build mode for one or more of the'
|
|
echo 'languages you are analyzing, replace this with the commands to build'
|
|
echo 'your code, for example:'
|
|
echo ' make bootstrap'
|
|
echo ' make release'
|
|
exit 1
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v4
|
|
with:
|
|
category: "/language:${{ matrix.language }}"
|