From 179675444fdbc7d45a3b1c9d2ba003abc119c174 Mon Sep 17 00:00:00 2001 From: Mike Holly Date: Sat, 25 Nov 2023 12:39:44 -0800 Subject: [PATCH] Fix CodeQL (#3532) Found a solution here: https://github.com/github/codeql-action/issues/1842 --- .../workflows/ci-scheduled-codeql-analysis.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-scheduled-codeql-analysis.yml b/.github/workflows/ci-scheduled-codeql-analysis.yml index fd2f7a96..7057e836 100644 --- a/.github/workflows/ci-scheduled-codeql-analysis.yml +++ b/.github/workflows/ci-scheduled-codeql-analysis.yml @@ -46,6 +46,11 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Install Go + uses: actions/setup-go@v4 + with: + go-version-file: go.mod + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v2 @@ -54,11 +59,11 @@ jobs: # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. - + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # queries: security-extended,security-and-quality - + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild @@ -67,12 +72,12 @@ jobs: # ℹī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - # If the Autobuild fails above, remove it and uncomment the following three lines. + # If the Autobuild fails above, remove it and uncomment the following three lines. # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. # - run: | - # echo "Run, Build Application using script" - # ./location_of_script_within_repo/buildscript.sh + # go version + # go build ./cmd/earthly/*.go - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2