From 238d7e2c5dbfa36143cfa4c36d4742c2f6a248c6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Sep 2025 17:48:21 +0000 Subject: [PATCH 1/2] chore(deps): update dependency github/codeql-action to v2.23.1 --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 312dc57..3e5c04c 100644 --- a/Earthfile +++ b/Earthfile @@ -344,7 +344,7 @@ ci-artifacts: # ci-codeql-setup sets up CodeQL for the ci-codeql target. ci-codeql-setup: - ARG CODEQL_VERSION=v2.23.0 + ARG CODEQL_VERSION=2.23.1 FROM curlimages/curl:8.16.0 RUN curl -fsSL https://github.com/github/codeql-action/releases/download/codeql-bundle-${CODEQL_VERSION}/codeql-bundle-linux64.tar.gz|tar zx SAVE ARTIFACT codeql From 71fa5a28a4eda7eab82468e54512436823231ded Mon Sep 17 00:00:00 2001 From: Jonathan Ogilvie Date: Fri, 26 Sep 2025 19:25:53 -0400 Subject: [PATCH 2/2] Codeql binary version Signed-off-by: Jonathan Ogilvie --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 3e5c04c..9689745 100644 --- a/Earthfile +++ b/Earthfile @@ -346,7 +346,7 @@ ci-artifacts: ci-codeql-setup: ARG CODEQL_VERSION=2.23.1 FROM curlimages/curl:8.16.0 - RUN curl -fsSL https://github.com/github/codeql-action/releases/download/codeql-bundle-${CODEQL_VERSION}/codeql-bundle-linux64.tar.gz|tar zx + RUN curl -fsSL https://github.com/github/codeql-action/releases/download/codeql-bundle-v${CODEQL_VERSION}/codeql-bundle-linux64.tar.gz|tar zx SAVE ARTIFACT codeql # ci-codeql is used by CI to build Crossplane with CodeQL scanning enabled.