Skip to content

Commit 6dfc772

Browse files
committed
Add link to new changelog post
1 parent 60e58b4 commit 6dfc772

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## [UNRELEASED]
44

5-
- CodeQL Action v1 is now discontinued, and is no longer updated or supported. For better performance, improved security, and new features, upgrade to v2. For more information, see [this changelog post](https://github.blog/changelog/2022-04-27-code-scanning-deprecation-of-codeql-action-v1/). [#1467](https://github.com/github/codeql-action/pull/1466)
6-
- Python automatic dependency installation will no longer fail for projects using Poetry that specify `virtualenvs.options.no-pip = true` in their `poetry.toml`. [#1431](https://github.com/github/codeql-action/pull/1431).
5+
- CodeQL Action v1 is now deprecated, and is no longer updated or supported. For better performance, improved security, and new features, upgrade to v2. For more information, see [this changelog post](https://github.blog/changelog/2023-01-18-code-scanning-codeql-action-v1-is-now-deprecated/). [#1467](https://github.com/github/codeql-action/pull/1466)
6+
- Python automatic dependency installation will no longer fail for projects using Poetry that specify `virtualenvs.options.no-pip = true` in their `poetry.toml`. [#1431](https://github.com/github/codeql-action/pull/1431)
77
- Avoid printing a stack trace and error message when the action fails to find the SHA at the
88
current directory. This will happen in several non-error states and so we now avoid cluttering the
99
log with this message. [#1485](https://github.com/github/codeql-action/pull/1485)
@@ -20,7 +20,7 @@
2020

2121
- Update default CodeQL bundle version to 2.11.5. [#1412](https://github.com/github/codeql-action/pull/1412)
2222
- Add a step that tries to upload a SARIF file for the workflow run when that workflow run fails. This will help better surface failed code scanning workflow runs. [#1393](https://github.com/github/codeql-action/pull/1393)
23-
- Python automatic dependency installation will no longer consider dependency code installed in venv as user-written, for projects using Poetry that specify `virtualenvs.in-project = true` in their `poetry.toml`. [#1419](https://github.com/github/codeql-action/pull/1419).
23+
- Python automatic dependency installation will no longer consider dependency code installed in venv as user-written, for projects using Poetry that specify `virtualenvs.in-project = true` in their `poetry.toml`. [#1419](https://github.com/github/codeql-action/pull/1419)
2424

2525
## 2.1.35 - 01 Dec 2022
2626

@@ -69,7 +69,7 @@ No user facing changes.
6969
## 2.1.25 - 21 Sep 2022
7070

7171
- We will soon be rolling out a feature of the CodeQL Action that stores some information used to make future runs faster in the GitHub Actions cache. Initially, this will only be enabled on JavaScript repositories, but we plan to add more languages to this soon. The new feature can be disabled by passing the `trap-caching: false` option to your workflow's `init` step, for example if you are already using the GitHub Actions cache for a different purpose and are near the storage limit for it.
72-
- Add support for Python automatic dependency installation with Poetry 1.2 [#1258](https://github.com/github/codeql-action/pull/1258).
72+
- Add support for Python automatic dependency installation with Poetry 1.2 [#1258](https://github.com/github/codeql-action/pull/1258)
7373

7474
## 2.1.24 - 16 Sep 2022
7575

lib/util.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/util.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/util.test.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/util.test.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/util.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ for (const [
359359
t.true(
360360
errorSpy.calledOnceWithExactly(
361361
sinon.match(
362-
"This version of the CodeQL Action was discontinued on January 18th, 2023"
362+
"This version of the CodeQL Action was deprecated on January 18th, 2023"
363363
)
364364
)
365365
);

src/util.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -632,16 +632,16 @@ export function getMlPoweredJsQueriesStatus(config: Config): string {
632632
* Prompt the customer to upgrade to CodeQL Action v2, if appropriate.
633633
*
634634
* Check whether a customer is running v1. If they are, and we can determine that the GitHub
635-
* instance supports v2, then log an error that v1 is discontinued and prompt the customer to
635+
* instance supports v2, then log an error that v1 is deprecated and prompt the customer to
636636
* upgrade to v2.
637637
*/
638638
export async function checkActionVersion(version: string) {
639639
if (!semver.satisfies(version, ">=2")) {
640640
core.error(
641-
"This version of the CodeQL Action was discontinued on January 18th, 2023, and is no longer " +
641+
"This version of the CodeQL Action was deprecated on January 18th, 2023, and is no longer " +
642642
"updated or supported. For better performance, improved security, and new features, " +
643643
"upgrade to v2. For more information, see " +
644-
"https://github.blog/changelog/2022-04-27-code-scanning-deprecation-of-codeql-action-v1/"
644+
"https://github.blog/changelog/2023-01-18-code-scanning-codeql-action-v1-is-now-deprecated/"
645645
);
646646
}
647647
}

0 commit comments

Comments
 (0)