From 25e643ab2a53c3036df9695ada051b8272eb3d5f Mon Sep 17 00:00:00 2001 From: Christian Helle Date: Thu, 26 Oct 2023 12:02:19 +0200 Subject: [PATCH] Update argument in Qodana action Changed the argument from '--project-dir' to '-i' in the GitHub workflow file for Qodana action. This alteration is in accordance with the recent Qodana's command-line interface update. --- .github/workflows/qodana.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index 231d2dc6..ffe96574 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -21,7 +21,7 @@ jobs: - name: 'Qodana Scan' uses: JetBrains/qodana-action@v2023.2 with: - args: --project-dir ./src + args: -i ./src push-fixes: pull-request env: QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file