Bump codecov/codecov-action from 4 to 6 (#4) #26
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
| # CodeQL security scanning. | |
| # Pure-R packages have limited CodeQL support; this workflow scans the | |
| # GitHub Actions YAML surface and any auto-detected languages. | |
| name: codeql.yaml | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ['actions'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: github/codeql-action/init@v3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - uses: github/codeql-action/analyze@v3 | |
| with: | |
| category: /language:${{ matrix.language }} |