Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Simplify warning language to not enumerate deprecated versions.
  • Loading branch information
mario-campos committed Nov 4, 2025
commit c443dff4332743a74bf05fba9238be34efe6545b
2 changes: 1 addition & 1 deletion lib/analyze-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/autobuild-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/init-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/resolve-environment-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/setup-codeql-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/upload-sarif-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/util.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ for (const [
t.true(
warningSpy.calledOnceWithExactly(
sinon.match(
"CodeQL Action major versions v1, v2, and v3 have either been deprecated or will soon be deprecated.",
"CodeQL Action major versions below v4 have either been deprecated or will soon be deprecated.",
Comment thread
mario-campos marked this conversation as resolved.
Outdated
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ export function checkActionVersion(
))
) {
core.error(
"CodeQL Action major versions v1, v2, and v3 have either been deprecated or will soon be deprecated. " +
"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/",
Expand Down
Loading