diff --git a/CHANGELOG.md b/CHANGELOG.md index 405d0eac46..b3753f20e4 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.25.15 - 26 Jul 2024 + +- Update default CodeQL bundle version to 2.18.1. [#2385](https://github.com/github/codeql-action/pull/2385) + ## 2.25.14 - 25 Jul 2024 - Experimental: add a new `start-proxy` action which starts the same HTTP proxy as used by [`github/dependabot-action`](https://github.com/github/dependabot-action). Do not use this in production as it is part of an internal experiment and subject to change at any time. diff --git a/lib/defaults.json b/lib/defaults.json index ca73cdd44a..a58063be26 100644 --- a/lib/defaults.json +++ b/lib/defaults.json @@ -1,6 +1,6 @@ { - "bundleVersion": "codeql-bundle-v2.18.0", - "cliVersion": "2.18.0", - "priorBundleVersion": "codeql-bundle-v2.17.6", - "priorCliVersion": "2.17.6" + "bundleVersion": "codeql-bundle-v2.18.1", + "cliVersion": "2.18.1", + "priorBundleVersion": "codeql-bundle-v2.18.0", + "priorCliVersion": "2.18.0" } diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index d149b049d2..633796fce1 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.25.14", + "version": "2.25.15", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package-lock.json b/package-lock.json index 1750e8b76c..7fcbb557f0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "2.25.14", + "version": "2.25.15", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codeql", - "version": "2.25.14", + "version": "2.25.15", "license": "MIT", "dependencies": { "@actions/artifact": "^1.1.2", diff --git a/package.json b/package.json index d23d4e2965..3d3eb26d19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.25.14", + "version": "2.25.15", "private": true, "description": "CodeQL action", "scripts": { diff --git a/src/defaults.json b/src/defaults.json index a213828b40..8503bea5b3 100644 --- a/src/defaults.json +++ b/src/defaults.json @@ -1,6 +1,6 @@ { - "bundleVersion": "codeql-bundle-v2.18.0", - "cliVersion": "2.18.0", - "priorBundleVersion": "codeql-bundle-v2.17.6", - "priorCliVersion": "2.17.6" + "bundleVersion": "codeql-bundle-v2.18.1", + "cliVersion": "2.18.1", + "priorBundleVersion": "codeql-bundle-v2.18.0", + "priorCliVersion": "2.18.0" }