From fe9deba2b1403c8412ff4a2a63a56c64fc50cb5f Mon Sep 17 00:00:00 2001 From: anupsv Date: Wed, 18 Dec 2024 21:49:13 +0530 Subject: [PATCH] Update codeQL-scanning.yaml --- .github/workflows/codeQL-scanning.yaml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeQL-scanning.yaml b/.github/workflows/codeQL-scanning.yaml index 897553f963..9e23324cad 100644 --- a/.github/workflows/codeQL-scanning.yaml +++ b/.github/workflows/codeQL-scanning.yaml @@ -35,15 +35,27 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Install Foundry + uses: foundry-rs/foundry-toolchain@v1 + + - name: Install golang + uses: actions/setup-go@v3 + with: + go-version: '1.21.1' + - name: Custom build using make + run: | + go install github.com/ethereum/go-ethereum/cmd/abigen@latest + make compile-el + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: go - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3