From f39c19fb5cc0006e7d8267b901fa18e8195db8c6 Mon Sep 17 00:00:00 2001 From: Gustavo Henrique Santos Souza de Miranda Date: Sat, 29 Nov 2025 04:19:48 -0300 Subject: [PATCH] Update Qodana config and workflow: simplify linter configuration - Removed `args` step from workflow; linter is now fully defined in `qodana.yaml` as `qodana-jvm`. - Switched to canonical linter name in `qodana.yaml` to avoid image warnings and CLI issues. --- .github/workflows/qodana_code_quality.yml | 3 +-- qodana.yaml | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml index fbc9405..1cf27c8 100644 --- a/.github/workflows/qodana_code_quality.yml +++ b/.github/workflows/qodana_code_quality.yml @@ -50,8 +50,7 @@ jobs: with: # Enable PR-specific reporting only for pull_request events pr-mode: ${{ github.event_name == 'pull_request' }} - # Pass the linter image via args (the action does not support an `image` input) - args: --image jetbrains/qodana-jvm:2025.2 + # No extra args needed; linter is defined in qodana.yaml (qodana-jvm) env: QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_268690425 }} QODANA_ENDPOINT: 'https://qodana.cloud' diff --git a/qodana.yaml b/qodana.yaml index 2b114b3..de49ec5 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -3,7 +3,8 @@ #################################################################################################################### version: "1.0" -linter: jetbrains/qodana-jvm:2025.2 +# Use canonical linter name to avoid image warnings and CLI flag issues +linter: qodana-jvm profile: name: qodana.recommended bootstrap: |