diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index c7cf93196d..594a9f44e1 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -36,6 +36,6 @@ jobs: git push origin "HEAD:$BRANCH" echo "Pushed a commit to update the checked-in dependencies." \ "Please mark the PR as ready for review to trigger PR checks." | - gh pr comment --body-file - --repo github/codeql-action --pr "${{ github.event.pull_request.number }}" - gh pr ready --undo --repo github/codeql-action --pr "${{ github.event.pull_request.number }}" + gh pr comment --body-file - --repo github/codeql-action "${{ github.event.pull_request.number }}" + gh pr ready --undo --repo github/codeql-action "${{ github.event.pull_request.number }}" fi diff --git a/CHANGELOG.md b/CHANGELOG.md index 6abd3cec50..6ceb354577 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. +## 2.21.7 - 14 Sep 2023 + +- Update default CodeQL bundle version to 2.14.5. [#1882](https://github.com/github/codeql-action/pull/1882) + ## 2.21.6 - 13 Sep 2023 - Better error message when there is a failure to determine the merge base of the code to analysis. [#1860](https://github.com/github/codeql-action/pull/1860) diff --git a/lib/defaults.json b/lib/defaults.json index 8a520c762d..e41a9d8260 100644 --- a/lib/defaults.json +++ b/lib/defaults.json @@ -1,6 +1,6 @@ { - "bundleVersion": "codeql-bundle-v2.14.4", - "cliVersion": "2.14.4", - "priorBundleVersion": "codeql-bundle-v2.14.3", - "priorCliVersion": "2.14.3" + "bundleVersion": "codeql-bundle-v2.14.5", + "cliVersion": "2.14.5", + "priorBundleVersion": "codeql-bundle-v2.14.4", + "priorCliVersion": "2.14.4" } diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index c21d362cc9..3b5c241402 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.21.6", + "version": "2.21.7", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package-lock.json b/package-lock.json index debb05d892..7a5df52fd9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "2.21.6", + "version": "2.21.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codeql", - "version": "2.21.6", + "version": "2.21.7", "license": "MIT", "dependencies": { "@actions/artifact": "^1.1.1", diff --git a/package.json b/package.json index a31d31e3d5..7e1f4d7be3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.21.6", + "version": "2.21.7", "private": true, "description": "CodeQL action", "scripts": { diff --git a/src/defaults.json b/src/defaults.json index 0006047097..0b484be707 100644 --- a/src/defaults.json +++ b/src/defaults.json @@ -1,6 +1,6 @@ { - "bundleVersion": "codeql-bundle-v2.14.4", - "cliVersion": "2.14.4", - "priorBundleVersion": "codeql-bundle-v2.14.3", - "priorCliVersion": "2.14.3" + "bundleVersion": "codeql-bundle-v2.14.5", + "cliVersion": "2.14.5", + "priorBundleVersion": "codeql-bundle-v2.14.4", + "priorCliVersion": "2.14.4" }