From 895fa3c2cdb658c0568380cfd134eb4df85cecf8 Mon Sep 17 00:00:00 2001 From: RusselViola Date: Thu, 11 Dec 2025 12:36:00 -0500 Subject: [PATCH] Update CodeQL analysis ref to use github.ref Based on the most recent build error, github.repository_owner wasn't providing the correct data type that we anticipated. Our changes to be more specific about github.sha may have been enough. --- .github/workflows/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 475e86f28..2af27d7df 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -115,6 +115,6 @@ jobs: - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v4 with: - category: "/language:${{matrix.language}}" - ref: ${{ github.repository_owner }} # since we are running this command in the root dir and that root is cloned via LabKey/server + category: "/language:${{matrix.language}} + ref: ${{ github.ref }} # since we are running this command in the root dir and that root is cloned via LabKey/server sha: ${{ github.sha }}