docs: Update README with correct API usage and comprehensive data list #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CodeQL | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| branches-ignore: [dependabot/**] | ||
| pull_request: | ||
| branches: ['**'] | ||
| schedule: | ||
| - cron: '0 14 * * 6' | ||
| permissions: {} | ||
| jobs: | ||
| analyze: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| security-events: write | ||
| steps: | ||
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0 | ||
| with: | ||
| distribution: temurin | ||
| java-version: '17' | ||
| - uses: github/codeql-action/init@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7 | ||
| with: | ||
| languages: java-kotlin | ||
| - uses: github/codeql-action/autobuild@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7 | ||
| - uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7 | ||