chore: update CodeQL action versions and bump go-sqlite3 dependency t… #12
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, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| schedule: | |
| - cron: '23 6 * * 1' | |
| permissions: | |
| contents: read | |
| security-events: write | |
| concurrency: | |
| group: codeql-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze Go | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4.37.4 | |
| with: | |
| languages: go | |
| queries: security-extended,security-and-quality | |
| - name: Build | |
| uses: github/codeql-action/autobuild@v4.37.4 | |
| - name: Analyze | |
| uses: github/codeql-action/analyze@v4.37.4 | |
| with: | |
| category: /language:go |