45 lines
1.5 KiB
YAML
45 lines
1.5 KiB
YAML
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@11bd71901bbe5b1630ceea73d27597364c9af683
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@467d7e6d9e138cb28eeebd638e6f0dbab1fd435e
|
|
with:
|
|
languages: java
|
|
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@467d7e6d9e138cb28eeebd638e6f0dbab1fd435e
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@467d7e6d9e138cb28eeebd638e6f0dbab1fd435e
|