From b65a7da24fbe4c367cd975915be677480f43bac0 Mon Sep 17 00:00:00 2001 From: Fernando Naranjo Date: Fri, 9 Feb 2024 15:39:44 +0100 Subject: [PATCH] chore: make codeql action use golang specified in go.mod Related PRs: - https://github.com/argentumcode/systemd-failure-pagerduty/pull/8/files - https://github.com/cloudfoundry/cloud-service-broker/pull/947 - https://github.com/cloudfoundry/cloud-service-broker/pull/948 --- .github/workflows/codeql.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index eb1cc3762..80cae5dc1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -32,6 +32,12 @@ jobs: languages: ${{ matrix.language }} queries: +security-and-quality + # Install golang used by this project (https://github.com/github/codeql-action/issues/1842) + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version-file: "go.mod" + - name: Autobuild uses: github/codeql-action/autobuild@v3