Skip to content

Code Scanning - Action #78

Code Scanning - Action

Code Scanning - Action #78

name: "Code Scanning - Action"
# Docs for this at https://github.com/github/codeql-action#usage
on:
schedule:
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
- cron: '30 1 * * 1'
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
CodeQL-Build:
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@b32f140b0c872d58512e0a66172253c302617b90
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@baf3361f3137806df1a78c598d1256f83cb89a23
with:
languages: java
- name: Autobuild
uses: github/codeql-action/autobuild@baf3361f3137806df1a78c598d1256f83cb89a23
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@baf3361f3137806df1a78c598d1256f83cb89a23