2023-11-29 04:40:51 +08:00
|
|
|
---
|
|
|
|
name: "CodeQL"
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '53 3 * * 0'
|
|
|
|
|
|
|
|
env:
|
|
|
|
LANGUAGE: 'java-kotlin'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-02-12 05:21:08 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-11-29 04:40:51 +08:00
|
|
|
|
2024-05-20 02:57:07 +08:00
|
|
|
- name: Set up JDK
|
2024-03-22 19:06:58 +08:00
|
|
|
uses: actions/setup-java@v4
|
2023-11-29 04:40:51 +08:00
|
|
|
with:
|
2024-05-20 02:57:07 +08:00
|
|
|
java-version: 21
|
2023-11-29 04:40:51 +08:00
|
|
|
distribution: 'adopt'
|
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2024-03-22 18:38:44 +08:00
|
|
|
uses: github/codeql-action/init@v3
|
2023-11-29 04:40:51 +08:00
|
|
|
with:
|
|
|
|
languages: ${{ env.LANGUAGE }}
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: mvn --batch-mode --update-snapshots verify
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2024-03-22 18:38:44 +08:00
|
|
|
uses: github/codeql-action/analyze@v3
|
2023-11-29 04:40:51 +08:00
|
|
|
with:
|
|
|
|
category: "/language:${{env.LANGUAGE}}"
|
|
|
|
...
|