mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 08:17:04 +05:30
26 lines
740 B
YAML
26 lines
740 B
YAML
name: "CodeQL"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@67a35a08586135a9573f4327e904ecbf517a882d # v2
|
|
with:
|
|
languages: java
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@67a35a08586135a9573f4327e904ecbf517a882d # v2
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@67a35a08586135a9573f4327e904ecbf517a882d # v2
|
|
with:
|
|
category: "/language:java"
|