2021-07-13 07:05:08 +02:00
|
|
|
name: CodeQL
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-09-09 07:40:51 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2021-07-13 07:05:08 +02:00
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 12 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Analyze:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-09-09 07:40:51 +02:00
|
|
|
uses: actions/checkout@v3
|
2021-07-13 07:05:08 +02:00
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2022-09-09 07:40:51 +02:00
|
|
|
uses: github/codeql-action/init@v2
|
2021-07-13 07:05:08 +02:00
|
|
|
with:
|
|
|
|
languages: java
|
|
|
|
|
|
|
|
- name: Autobuild
|
2022-09-09 07:40:51 +02:00
|
|
|
uses: github/codeql-action/autobuild@v2
|
2021-07-13 07:05:08 +02:00
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2022-09-09 07:40:51 +02:00
|
|
|
uses: github/codeql-action/analyze@v2
|