Skip to content

Bump org.junit:junit-bom from 6.0.3 to 6.1.2 #608

Bump org.junit:junit-bom from 6.0.3 to 6.1.2

Bump org.junit:junit-bom from 6.0.3 to 6.1.2 #608

Workflow file for this run

name: Qodana
on:
workflow_dispatch:
push:
branches:
- master
- release/**
- qodana/**
pull_request:
types: [opened, synchronize, reopened]
jobs:
qodana:
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read
checks: read
pull-requests: read
steps:
# Free GitHub Actions Environment Disk Space
- name: Maximize Build Space
uses: jlumbroso/free-disk-space@v1.3.1
with:
tool-cache: false
large-packages: false
# Check out the current repository
- name: Fetch Sources
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 # a full history is required for pull request analysis
# Set up the Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: 21
# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2025.3.2
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
with:
cache-default-branch-only: true
- uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json