-
Notifications
You must be signed in to change notification settings - Fork 1
build(deps): bump JetBrains/qodana-action from 2026.1.3 to 2026.2.0 #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ jobs: | |
|
|
||
| - name: 馃攳 Qodana Scan | ||
| id: qodana | ||
| uses: JetBrains/qodana-action@v2026.1.3 | ||
| uses: JetBrains/qodana-action@v2026.2.0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 馃攳 New action release changes exit-code propagation semantics The 2026.2.0 release notes include "QD-13746 pass Qodana exit code in action" and "QD-15410 check that in case of pr-mode: true the repository checked out to source branch". The step uses Was this helpful? React with 馃憤 or 馃憥 to provide feedback. |
||
| continue-on-error: true | ||
| env: | ||
| QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
馃攳 Cache keys still reference Qodana 2025.3 while action moves to 2026.2.0
The Qodana step's
primary-cache-key/additional-cache-key(.github/workflows/code-quality.yml:38-39) are hardcoded toqodana-2025.3-..., which no longer matches the action version being used (now 2026.2.0). This is pre-existing (the keys were already stale for 2026.1.3), but the bump makes it more misleading: caches produced by different Qodana major versions share the same key, which can lead to reusing incompatible cache contents. Consider parameterizing the version in the cache key.Was this helpful? React with 馃憤 or 馃憥 to provide feedback.