From f1b3950a884d689eec2d1cd7b45c2d6778f8f965 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 17:43:56 +0000 Subject: [PATCH 1/2] fix(deps): bump github/codeql-action/init from 4.37.1 to 4.37.3 Bumps [github/codeql-action/init](https://github.com/github/codeql-action) from 4.37.1 to 4.37.3. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/7188fc363630916deb702c7fdcf4e481b751f97a...e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81) --- updated-dependencies: - dependency-name: github/codeql-action/init dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/rg-security.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rg-security.yml b/.github/workflows/rg-security.yml index cc56d1f..f5fd869 100644 --- a/.github/workflows/rg-security.yml +++ b/.github/workflows/rg-security.yml @@ -39,7 +39,7 @@ jobs: timeout-minutes: 20 steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 - - uses: github/codeql-action/init@7188fc363630916deb702c7fdcf4e481b751f97a # v4 + - uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 with: languages: ${{ inputs.codeql-languages }} - uses: github/codeql-action/analyze@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1 From 28af278437225b188b45064ab6c96400a14c6dd9 Mon Sep 17 00:00:00 2001 From: Daedalus <268206840+daedalus-omt@users.noreply.github.com> Date: Sat, 25 Jul 2026 02:52:02 +0000 Subject: [PATCH 2/2] fix(ci): keep CodeQL action pins aligned Signed-off-by: Daedalus <268206840+daedalus-omt@users.noreply.github.com> --- .github/workflows/rg-security.yml | 4 ++-- test/security-workflow.test.ts | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rg-security.yml b/.github/workflows/rg-security.yml index f5fd869..c265fce 100644 --- a/.github/workflows/rg-security.yml +++ b/.github/workflows/rg-security.yml @@ -42,7 +42,7 @@ jobs: - uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 with: languages: ${{ inputs.codeql-languages }} - - uses: github/codeql-action/analyze@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1 + - uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 - uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0 if: inputs.enable-dependency-review && github.event_name == 'pull_request' with: @@ -55,7 +55,7 @@ jobs: --lockfile=${{ inputs.lockfile }} --format=sarif --output=osv-results.sarif - - uses: github/codeql-action/upload-sarif@7188fc363630916deb702c7fdcf4e481b751f97a # v4 + - uses: github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 if: always() && hashFiles('osv-results.sarif') != '' with: sarif_file: osv-results.sarif diff --git a/test/security-workflow.test.ts b/test/security-workflow.test.ts index dbd75c7..95b84aa 100644 --- a/test/security-workflow.test.ts +++ b/test/security-workflow.test.ts @@ -79,9 +79,9 @@ describe("security and reusable workflows", () => { .filter((uses): uses is string => uses?.startsWith("github/codeql-action/") ?? false) .map((uses) => uses.split("@")[1]); expect(codeqlActionVersions).toEqual([ - "7188fc363630916deb702c7fdcf4e481b751f97a", - "7188fc363630916deb702c7fdcf4e481b751f97a", - "7188fc363630916deb702c7fdcf4e481b751f97a" + "e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81", + "e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81", + "e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81" ]); const codeqlSteps = rgSecurity.jobs.security.steps.filter((step: { uses?: string }) => @@ -89,7 +89,7 @@ describe("security and reusable workflows", () => { ); const codeqlVersions = codeqlSteps.map((step: { uses: string }) => step.uses.split("@")[1]); expect(codeqlVersions).toHaveLength(3); - expect(new Set(codeqlVersions)).toEqual(new Set(["7188fc363630916deb702c7fdcf4e481b751f97a"])); + expect(new Set(codeqlVersions)).toEqual(new Set(["e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81"])); const rgRelease = YAML.parse( fs.readFileSync(path.resolve(".github/workflows/rg-release.yml"), "utf8")