Bump org.junit.jupiter:junit-jupiter from 6.0.3 to 6.1.2 #343
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
| # Qodana is a code quality analysis tool that helps you to improve your code quality and find bugs and security vulnerabilities. | |
| # This helps with keeping code quality high and reducing the number of bugs and security vulnerabilities in your code. | |
| # | |
| # To learn more about Qodana, visit https://www.jetbrains.com/help/qodana/getting-started.html | |
| name: "Qodana" | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| push: | |
| branches: [ main ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| qodana: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| contents: write | |
| pull-requests: write | |
| checks: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit | |
| fetch-depth: 0 | |
| - name: 'Qodana Scan' | |
| uses: JetBrains/qodana-action@v2026.1.0 | |
| env: | |
| QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} | |
| QODANA_ENDPOINT: 'https://qodana.cloud' | |
| - name: 'Publish to CodeQL' | |
| uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json | |
| category: jetbrains-qodana |