Simplify warning language to not enumerate deprecated versions.

This commit is contained in:
Mario Campos
2025-11-04 11:57:44 -06:00
parent b32a1e0627
commit c443dff433
8 changed files with 8 additions and 8 deletions

View File

@@ -83252,7 +83252,7 @@ function checkActionVersion(version, githubVersion) {
">=3.20"
)) {
core3.error(
"CodeQL Action major versions v1, v2, and v3 have either been deprecated or will soon be deprecated. Please update all occurrences of the CodeQL Action in your workflow files to v4. For more information, see https://github.blog/changelog/2025-10-28-upcoming-deprecation-of-codeql-action-v3/"
"CodeQL Action major versions below v4 have either been deprecated or will soon be deprecated. Please update all occurrences of the CodeQL Action in your workflow files to v4. For more information, see https://github.blog/changelog/2025-10-28-upcoming-deprecation-of-codeql-action-v3/"
);
core3.exportVariable("CODEQL_ACTION_DID_LOG_VERSION_DEPRECATION" /* LOG_VERSION_DEPRECATION */, "true");
}