From 85d80bc18a1578ec2a0a8d071f21dd7dd15b77a1 Mon Sep 17 00:00:00 2001 From: Tomachi <8929706+book000@users.noreply.github.com> Date: Tue, 26 Apr 2022 23:40:33 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Qodana=E3=81=AElinter=E6=8C=87=E5=AE=9A?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20(#792)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: Qodanaのlinter指定修正 * chore: add upload artifact * fix: use-caches: false * fix: qodana 10 minutes timeout * fix: qodana 30 minutes timeout * fix: remove use-caches false * fix: add use-caches false --- .github/workflows/qodana-quality.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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: