Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th

## [UNRELEASED]

No user facing changes.
- Downgraded the severity of the "v3 deprecation" notice from "error" to "warning", since the deprecation notice is meant to _warn_ users in advance.
Comment thread
mario-campos marked this conversation as resolved.
Outdated

## 4.31.3 - 13 Nov 2025

Expand Down
968 changes: 484 additions & 484 deletions lib/analyze-action-post.js

Large diffs are not rendered by default.

714 changes: 357 additions & 357 deletions lib/analyze-action.js

Large diffs are not rendered by default.

656 changes: 328 additions & 328 deletions lib/autobuild-action.js

Large diffs are not rendered by default.

1,002 changes: 501 additions & 501 deletions lib/init-action-post.js

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions lib/init-action.js

Large diffs are not rendered by default.

664 changes: 332 additions & 332 deletions lib/resolve-environment-action.js

Large diffs are not rendered by default.

668 changes: 334 additions & 334 deletions lib/setup-codeql-action.js

Large diffs are not rendered by default.

940 changes: 470 additions & 470 deletions lib/start-proxy-action-post.js

Large diffs are not rendered by default.

1,168 changes: 584 additions & 584 deletions lib/start-proxy-action.js

Large diffs are not rendered by default.

648 changes: 324 additions & 324 deletions lib/upload-lib.js

Large diffs are not rendered by default.

940 changes: 470 additions & 470 deletions lib/upload-sarif-action-post.js

Large diffs are not rendered by default.

672 changes: 336 additions & 336 deletions lib/upload-sarif-action.js

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions package-lock.json

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 @@ -476,7 +476,7 @@ for (const [
githubVersion,
)}`;
test(`checkActionVersion ${reportErrorDescription} for ${versionsDescription}`, async (t) => {
const warningSpy = sinon.spy(core, "error");
const warningSpy = sinon.spy(core, "warning");
const versionStub = sinon
.stub(api, "getGitHubVersion")
.resolves(githubVersion);
Expand Down
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ export function checkActionVersion(
">=3.20",
))
) {
core.error(
core.warning(
"CodeQL Action v3 will be deprecated in December 2026. " +
"Please update all occurrences of the CodeQL Action in your workflow files to v4. " +
"For more information, see " +
Expand Down
Loading