Create codeql-analysis.yml

Automatically scans code for vulnerabilities on every push to master, pull request, on demand, and at 12:00 UTC every day.

Fix

Signed-off-by: Luke Simmons <luke5083@live.com>
This commit is contained in:
Luke Simmons 2021-07-13 00:05:08 -05:00
parent 824c6c2599
commit 7e04f30b02
No known key found for this signature in database
GPG Key ID: 2264BF9AFADCCD8D

33
.github/workflows/codeql-analysis.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: CodeQL
on:
push:
branches: master
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
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: java
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1