From 9477353cdc7ccbf12f2d3e4e64abe7fe34b77de2 Mon Sep 17 00:00:00 2001 From: AnonymousRandomPerson Date: Mon, 1 Jan 2024 16:15:41 -0600 Subject: [PATCH] Disabled expired Qodana step --- .github/workflows/qodana.yml | 44 ------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/qodana.yml diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml deleted file mode 100644 index 30990fd4..00000000 --- a/.github/workflows/qodana.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Qodana -on: - workflow_dispatch: - pull_request_target: - branches: - - master - paths: - - "**.js" - - "**.sh" - - "**.py" - push: - branches: - - master - paths: - - "**.js" - - "**.sh" - - "**.py" - -jobs: - qodana: - name: Qodana - runs-on: ubuntu-latest - if: github.repository_owner == 'placeAtlas' - permissions: - contents: write - pull-requests: write - checks: write - security-events: write - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Check using Qodana - uses: JetBrains/qodana-action@main - env: - QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} - - name: Upload results - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json - env: - QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} -