2023-08-29 22:53:07 +03:00
|
|
|
name: CodeQL
|
2022-06-07 19:20:09 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
# The branches below must be a subset of the branches above
|
|
|
|
branches: [ main ]
|
|
|
|
schedule:
|
|
|
|
- cron: '25 4 * * 5'
|
|
|
|
|
2024-03-18 18:59:44 +03:00
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
|
2022-06-07 19:20:09 +03:00
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
language: [ 'ruby' ]
|
|
|
|
|
|
|
|
steps:
|
2023-08-29 22:53:07 +03:00
|
|
|
- name: checkout
|
2024-03-18 18:46:22 +03:00
|
|
|
uses: actions/checkout@v4
|
2022-06-07 19:20:09 +03:00
|
|
|
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
- name: Initialize CodeQL
|
2024-05-29 23:06:40 +03:00
|
|
|
uses: github/codeql-action/init@v3
|
2022-06-07 19:20:09 +03:00
|
|
|
with:
|
|
|
|
languages: ${{ matrix.language }}
|
|
|
|
|
|
|
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
|
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
|
|
- name: Autobuild
|
2024-05-29 23:06:40 +03:00
|
|
|
uses: github/codeql-action/autobuild@v3
|
2022-06-07 19:20:09 +03:00
|
|
|
#- run: |
|
|
|
|
# make bootstrap
|
|
|
|
# make release
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2024-05-29 23:06:40 +03:00
|
|
|
uses: github/codeql-action/analyze@v3
|