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@ac593985615ec2ede58e132d2e21d2b1cbd6127c # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@421a1b344fb0def373a0794a4051f19f207461ec with: languages: java - name: Autobuild uses: github/codeql-action/autobuild@421a1b344fb0def373a0794a4051f19f207461ec - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@421a1b344fb0def373a0794a4051f19f207461ec