diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 04dfeb16..e81d50d5 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -1,7 +1,6 @@ name: efiXplorer CI on: push: - pull_request: jobs: build_windows: runs-on: windows-2019 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ea4ba892..97831b03 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -2,10 +2,6 @@ name: "CodeQL" on: push: branches: [ master ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ master ] - jobs: analyze-everything: name: Analyze efiXplorer @@ -14,12 +10,10 @@ jobs: actions: read contents: read security-events: write - strategy: fail-fast: false matrix: language: [ 'cpp' ] - steps: - name: Checkout repository uses: actions/checkout@v4 @@ -28,7 +22,6 @@ jobs: uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} - - name: Autobuild env: IDA_SDK: ${{ secrets.DOWNLOAD_LINK_IDA_SDK }} @@ -43,6 +36,5 @@ jobs: cd build cmake .. -DIdaSdk_ROOT_DIR="../../idasdk84" -DHexRaysSdk_ROOT_DIR="../../hexrays_sdk" cmake --build . --config Release - - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3