mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 08:17:04 +05:30
26 lines
756 B
YAML
26 lines
756 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@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
|
|
with:
|
|
languages: java
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
|
|
with:
|
|
category: "/language:java"
|