Bump nosborn/github-action-markdown-cli from 7ca86fe6cbe33f6579ac44885b5ed73746db6e42 to 85611bef0da53168168939754ff9d8f6073a8fec #140
Workflow file for this run
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: | |
| schedule: | |
| - cron: '0 5 * * 3' | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| security-events: write | |
| jobs: | |
| codeql: | |
| runs-on: ubuntu-latest | |
| name: "CodeQL" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: CodeQL Initialization | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: actions | |
| build-mode: none | |
| queries: +security-and-quality | |
| - name: CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |