Bump JetBrains/qodana-action from 2026.1.3 to 2026.2.0 - #93
Bump JetBrains/qodana-action from 2026.1.3 to 2026.2.0#93dependabot[bot] wants to merge 1 commit into
Conversation
Bumps [JetBrains/qodana-action](https://github.com/jetbrains/qodana-action) from 2026.1.3 to 2026.2.0. - [Release notes](https://github.com/jetbrains/qodana-action/releases) - [Commits](JetBrains/qodana-action@4861e01...b588768) --- updated-dependencies: - dependency-name: JetBrains/qodana-action dependency-version: 2026.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
📝 WalkthroughWalkthroughChangesQodana Workflow
Estimated code review effort: 1 (Trivial) | ~2 minutes Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/qodana.yml:
- Line 26: Update the inline version note for the JetBrains/qodana-action pin to
v2026.2.0, and update the expected commit hash in QodanaCiCompatibilityTest to
b588768b6e7e6da579e518bc584f79de0d243692 so the workflow and compatibility test
use the same pinned revision.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro Plus
Run ID: e4d084ef-aa58-4a6c-bf18-e0e3f93e1871
📒 Files selected for processing (1)
.github/workflows/qodana.yml
|
|
||
| - name: Qodana Scan | ||
| uses: JetBrains/qodana-action@4861e015da555e86a72b862892aba6c2b93e6891 # Lukittu versioon v2026.1.3. | ||
| uses: JetBrains/qodana-action@b588768b6e7e6da579e518bc584f79de0d243692 # Lukittu versioon v2026.1.3. |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
workflow_sha="$(rg -o 'JetBrains/qodana-action@[0-9a-f]{40}' .github/workflows/qodana.yml | cut -d@ -f2)"
test_sha="$(rg -o 'JetBrains/qodana-action@[0-9a-f]{40}' app/src/test/java/com/dbcheck/app/release/QodanaCiCompatibilityTest.kt | cut -d@ -f2)"
test "$workflow_sha" = "$test_sha"
git ls-remote https://github.com/JetBrains/qodana-action.git 'refs/tags/v2026.2.0' 'refs/tags/v2026.2.0^{}'Repository: Insaner1980/dBcheck
Length of output: 157
🏁 Script executed:
#!/bin/bash
set -euo pipefail
printf '\n== workflow ==\n'
cat -n .github/workflows/qodana.yml | sed -n '20,32p'
printf '\n== compatibility test ==\n'
cat -n app/src/test/java/com/dbcheck/app/release/QodanaCiCompatibilityTest.kt | sed -n '1,120p'
printf '\n== extracted shas ==\n'
workflow_sha="$(rg -o 'JetBrains/qodana-action@[0-9a-f]{40}' .github/workflows/qodana.yml | cut -d@ -f2)"
test_sha="$(rg -o 'JetBrains/qodana-action@[0-9a-f]{40}' app/src/test/java/com/dbcheck/app/release/QodanaCiCompatibilityTest.kt | cut -d@ -f2)"
printf 'workflow_sha=%s\n' "$workflow_sha"
printf 'test_sha=%s\n' "$test_sha"
printf '\n== remote tags ==\n'
git ls-remote https://github.com/JetBrains/qodana-action.git 'refs/tags/v2026.2.0' 'refs/tags/v2026.2.0^{}' || true
git ls-remote https://github.com/JetBrains/qodana-action.git 'refs/tags/v2026.1.3' 'refs/tags/v2026.1.3^{}' || trueRepository: Insaner1980/dBcheck
Length of output: 5160
🏁 Script executed:
#!/bin/bash
set -euo pipefail
python3 - <<'PY'
from pathlib import Path
for p in [
Path('.github/workflows/qodana.yml'),
Path('app/src/test/java/com/dbcheck/app/release/QodanaCiCompatibilityTest.kt'),
]:
print(f"\n== {p} ==")
for i, line in enumerate(p.read_text().splitlines(), 1):
if 'qodana-action' in line or 'v2026' in line or '4861e015' in line or 'b588768b6e7e6da579e518bc584f79de0d243692' in line:
print(f"{i}: {line}")
PY
printf '\n== commit existence ==\n'
for sha in b588768b6e7e6da579e518bc584f79de0d243692 4861e015da555e86a72b862892aba6c2b93e6891; do
if git ls-remote https://github.com/JetBrains/qodana-action.git "$sha" >/dev/null 2>&1; then
echo "$sha reachable via ls-remote"
else
echo "$sha not directly reachable via ls-remote"
fi
doneRepository: Insaner1980/dBcheck
Length of output: 665
🏁 Script executed:
#!/bin/bash
set -euo pipefail
printf 'workflow: '
rg -o 'JetBrains/qodana-action@[0-9a-f]{40}' .github/workflows/qodana.yml | cut -d@ -f2
printf 'test: '
rg -o 'JetBrains/qodana-action@[0-9a-f]{40}' app/src/test/java/com/dbcheck/app/release/QodanaCiCompatibilityTest.kt | cut -d@ -f2
printf '\nrefs for v2026.2.0:\n'
git ls-remote --tags https://github.com/JetBrains/qodana-action.git 'v2026.2.0' 'v2026.2.0^{}' || true
printf '\nrefs for v2026.1.3:\n'
git ls-remote --tags https://github.com/JetBrains/qodana-action.git 'v2026.1.3' 'v2026.1.3^{}' || trueRepository: Insaner1980/dBcheck
Length of output: 483
Update the Qodana version note and test expectation.
JetBrains/qodana-action@b588768b6e7e6da579e518bc584f79de0d243692 is the v2026.2.0 commit, so the inline note at line 26 is stale (v2026.1.3). app/src/test/java/com/dbcheck/app/release/QodanaCiCompatibilityTest.kt still hard-codes 4861e015da555e86a72b862892aba6c2b93e6891, so it no longer matches this workflow pin.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.github/workflows/qodana.yml at line 26, Update the inline version note for
the JetBrains/qodana-action pin to v2026.2.0, and update the expected commit
hash in QodanaCiCompatibilityTest to b588768b6e7e6da579e518bc584f79de0d243692 so
the workflow and compatibility test use the same pinned revision.
Bumps JetBrains/qodana-action from 2026.1.3 to 2026.2.0.
Release notes
Sourced from JetBrains/qodana-action's releases.
Commits
b588768QD-15622 ⬆️ Updateqodanatov2026.2.0(#611)d37471b🐛 QD-14507 Add title parameter to gh release create command (#593)8069c0fQD-15420 Warn about sanity problems in the summary posted in the pull request...e11337fQD-15410 check that in case of pr-mode: true the repository checked out to so...1f6f293QD-15472 bump tar dependencyf28920a:docs: Update qodana-maven-plugin version to 2026.1.3cf5541eQD-12982 skip pull in action if arg is specified97d17d6QD-13746 pass Qodana exit code in actionf4341f6QD-14362 bump color able axios version to 1.15.269c00ce🐛 Fix azure release workflow husky error (#604)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by CodeRabbit