diff --git a/CHANGELOG.md b/CHANGELOG.md index bcbcdaecac..8485ff27d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th Note that the only difference between `v2` and `v3` of the CodeQL Action is the node version they support, with `v3` running on node 20 while we continue to release `v2` to support running on node 16. For example `3.22.11` was the first `v3` release and is functionally identical to `2.22.11`. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers. +## 2.26.2 - 14 Aug 2024 + +- Update default CodeQL bundle version to 2.18.2. [#2417](https://github.com/github/codeql-action/pull/2417) + ## 2.26.1 - 13 Aug 2024 No user facing changes. diff --git a/lib/defaults.json b/lib/defaults.json index a58063be26..29638bb159 100644 --- a/lib/defaults.json +++ b/lib/defaults.json @@ -1,6 +1,6 @@ { - "bundleVersion": "codeql-bundle-v2.18.1", - "cliVersion": "2.18.1", - "priorBundleVersion": "codeql-bundle-v2.18.0", - "priorCliVersion": "2.18.0" + "bundleVersion": "codeql-bundle-v2.18.2", + "cliVersion": "2.18.2", + "priorBundleVersion": "codeql-bundle-v2.18.1", + "priorCliVersion": "2.18.1" } diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index d5f7e9e438..0ce32c66c3 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.26.1", + "version": "2.26.2", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package-lock.json b/package-lock.json index 12e93f8792..ee988c1143 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "2.26.1", + "version": "2.26.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codeql", - "version": "2.26.1", + "version": "2.26.2", "license": "MIT", "dependencies": { "@actions/artifact": "^1.1.2", diff --git a/package.json b/package.json index 3902f66a65..461876eb6d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.26.1", + "version": "2.26.2", "private": true, "description": "CodeQL action", "scripts": { diff --git a/src/defaults.json b/src/defaults.json index 8503bea5b3..5c63e93bc9 100644 --- a/src/defaults.json +++ b/src/defaults.json @@ -1,6 +1,6 @@ { - "bundleVersion": "codeql-bundle-v2.18.1", - "cliVersion": "2.18.1", - "priorBundleVersion": "codeql-bundle-v2.18.0", - "priorCliVersion": "2.18.0" + "bundleVersion": "codeql-bundle-v2.18.2", + "cliVersion": "2.18.2", + "priorBundleVersion": "codeql-bundle-v2.18.1", + "priorCliVersion": "2.18.1" }