Skip to content

Commit

Permalink
Add CodeQL security scan (#1971)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanbrar1999 authored Jan 5, 2021
1 parent f70a464 commit d9dc07c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Code Scanning - Action"

on:
workflow_dispatch:
schedule:
- cron: '30 1 * * *'

jobs:
CodeQL-Build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: java

- name: Setup Java 11
uses: actions/setup-java@v1
with:
java-version: 11

- name: Autobuild
uses: github/codeql-action/autobuild@v1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

0 comments on commit d9dc07c

Please sign in to comment.