From 9366f803993df41030da010f29a8f4a0b48d8785 Mon Sep 17 00:00:00 2001 From: Mario Campos Date: Tue, 4 Nov 2025 12:00:11 -0600 Subject: [PATCH] Reference GHES 3.20 in the comment, not 3.19. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/util.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util.ts b/src/util.ts index bed223cc3..f49e1401e 100644 --- a/src/util.ts +++ b/src/util.ts @@ -1129,9 +1129,9 @@ export function checkActionVersion( ) { // Only error for versions of GHES that are compatible with CodeQL Action version 4. // - // GHES 3.19 shipped without the v4 tag, but it also shipped without this warning message code. - // Therefore, users who are seeing this warning message code have pulled in a new version of the - // Action, and with it the v4 tag. + // GHES 3.20 is the first version to ship with the v4 tag and this warning message code. + // Therefore, users who are seeing this warning message code are running on GHES 3.20 or newer, + // and should update to CodeQL Action v4. if ( githubVersion.type === GitHubVariant.DOTCOM || githubVersion.type === GitHubVariant.GHE_DOTCOM ||