diff --git a/.github/workflows/qodana-quality.yml b/.github/workflows/qodana-quality.yml index cba3d5a03..c2e802e3d 100644 --- a/.github/workflows/qodana-quality.yml +++ b/.github/workflows/qodana-quality.yml @@ -23,10 +23,17 @@ jobs: - name: Qodana Scan uses: JetBrains/qodana-action@v5.0.2 + timeout-minutes: 30 with: - linter: jetbrains/qodana-jvm-community - fail-threshold: 100 upload-result: true + args: "--linter,jetbrains/qodana-jvm-community,--fail-threshold,100" + use-caches: false + + - uses: actions/upload-artifact@v3 + if: always() + with: + name: results + path: ${{ runner.temp }}/qodana/results - uses: github/codeql-action/upload-sarif@v1 with: