From df5d2a1e999ea9e5a1ac3393f24ae933c398c40e Mon Sep 17 00:00:00 2001 From: Christian Helle Date: Thu, 26 Oct 2023 10:07:36 +0200 Subject: [PATCH] Update Qodana GitHub action's project directory argument path In the GitHub workflow configuration for Qodana, the file path given in the arguments for the 'Qodana Scan' step was updated. It changed from relative format ("src") to an absolute one (./src). This was done to help keep the path reference unambiguous across different environments or use-cases. --- .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 99122def..231d2dc6 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: --project-dir ./src push-fixes: pull-request env: QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file