diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index 158a6a685f..328bee908e 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -63,26 +63,3 @@ jobs: uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9 with: category: "/language:${{matrix.language}}" - - check: - name: Check CodeQL Analysis - if: always() && github.event_name == 'pull_request' - needs: - - analyze - runs-on: ubuntu-latest - defaults: - run: - shell: bash - steps: - - name: Check - env: - INPUT_RESULTS: ${{ join(needs.*.result, ' ') }} - run: | - set -euo pipefail - read -a results <<< "${INPUT_RESULTS}" - for result in "${results[@]}"; do - if [[ "${result}" == "failure" ]] || [[ "${result}" == "cancelled" ]]; then - echo "::error::Workflow failed!" - exit 1 - fi - done