aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLuke Simmons <luke5083@live.com>2021-07-13 05:05:08 +0000
committerLuke Simmons <luke5083@live.com>2021-07-13 05:05:08 +0000
commit7e04f30b02f6f134ae65feddadf0b0b831322fcb (patch)
treeeae8c7eed3ab0bdbe13fb51f2aacb18e06bab103 /.github
parent824c6c2599768bf0c06642f0affb90f5aaaff909 (diff)
downloadinfinity-for-reddit-7e04f30b02f6f134ae65feddadf0b0b831322fcb.tar
infinity-for-reddit-7e04f30b02f6f134ae65feddadf0b0b831322fcb.tar.gz
infinity-for-reddit-7e04f30b02f6f134ae65feddadf0b0b831322fcb.tar.bz2
infinity-for-reddit-7e04f30b02f6f134ae65feddadf0b0b831322fcb.tar.lz
infinity-for-reddit-7e04f30b02f6f134ae65feddadf0b0b831322fcb.tar.xz
infinity-for-reddit-7e04f30b02f6f134ae65feddadf0b0b831322fcb.tar.zst
infinity-for-reddit-7e04f30b02f6f134ae65feddadf0b0b831322fcb.zip
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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql-analysis.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
new file mode 100644
index 00000000..f4dc0ba2
--- /dev/null
+++ b/.github/workflows/codeql-analysis.yml
@@ -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