Bump jsoup from 0bb57131e8 to bdc5a86440 (#6487)
#6939
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: Qodana | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**/**' | |
| - '!docs/**' | |
| - '!*.md' | |
| - '!.github/workflows/docs.yml' | |
| - '!.github/workflows/gradle.yml' | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - '**/**' | |
| - '!docs/**' | |
| - '!*.md' | |
| - '!.github/workflows/docs.yml' | |
| - '!.github/workflows/gradle.yml' | |
| jobs: | |
| qodana: | |
| if: ${{ !github.event.pull_request.head.repo.fork || github.ref == 'refs/heads/master'}} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: 'Qodana Scan' | |
| uses: JetBrains/qodana-action@v2025.3.1 | |
| env: | |
| QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} | |
| - uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json |