diff --git a/.github/actions/check-sarif/action.yml b/.github/actions/check-sarif/action.yml index 161d11d76a..09611f3a0d 100644 --- a/.github/actions/check-sarif/action.yml +++ b/.github/actions/check-sarif/action.yml @@ -16,5 +16,5 @@ inputs: Comma separated list of query ids that should NOT be included in this SARIF file. runs: - using: 'node20' + using: 'node24' main: index.js diff --git a/CHANGELOG.md b/CHANGELOG.md index c9211f8543..5883b57d4f 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. +## 3.22.11 - 13 Dec 2023 + +No user facing changes. + ## 3.22.10 - 13 Dec 2023 - [v3+ only] The CodeQL Action now runs on Node.js v20. [#2006](https://github.com/github/codeql-action/pull/2006) diff --git a/analyze/action.yml b/analyze/action.yml index 50806f5c52..2fe214b2c9 100644 --- a/analyze/action.yml +++ b/analyze/action.yml @@ -84,6 +84,6 @@ outputs: sarif-id: description: The ID of the uploaded SARIF file. runs: - using: 'node20' + using: 'node24' main: "../lib/analyze-action.js" post: "../lib/analyze-action-post.js" diff --git a/autobuild/action.yml b/autobuild/action.yml index 2c874a7d63..b36e67c187 100644 --- a/autobuild/action.yml +++ b/autobuild/action.yml @@ -13,5 +13,5 @@ inputs: $GITHUB_WORKSPACE as its working directory. required: false runs: - using: 'node20' + using: 'node24' main: '../lib/autobuild-action.js' diff --git a/init/action.yml b/init/action.yml index 876ddeea3f..0aeefc4a85 100644 --- a/init/action.yml +++ b/init/action.yml @@ -109,6 +109,6 @@ outputs: codeql-path: description: The path of the CodeQL binary used for analysis runs: - using: 'node20' + using: 'node24' main: '../lib/init-action.js' post: '../lib/init-action-post.js' diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index 4f0743360f..932b9a077e 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "3.22.10", + "version": "3.22.11", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package-lock.json b/package-lock.json index 0e23472700..5e8daf0c4b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "3.22.10", + "version": "3.22.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codeql", - "version": "3.22.10", + "version": "3.22.11", "license": "MIT", "dependencies": { "@actions/artifact": "^1.1.2", diff --git a/package.json b/package.json index 692f819a9a..5c59c2e70e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "3.22.10", + "version": "3.22.11", "private": true, "description": "CodeQL action", "scripts": { diff --git a/resolve-environment/action.yml b/resolve-environment/action.yml index 0ba000dc8e..c2535c0dc3 100644 --- a/resolve-environment/action.yml +++ b/resolve-environment/action.yml @@ -19,5 +19,5 @@ outputs: environment: description: The inferred build environment configuration. runs: - using: 'node20' + using: 'node24' main: '../lib/resolve-environment-action.js' diff --git a/upload-sarif/action.yml b/upload-sarif/action.yml index 795e8dd96c..ccef34f27f 100644 --- a/upload-sarif/action.yml +++ b/upload-sarif/action.yml @@ -34,5 +34,5 @@ outputs: sarif-id: description: The ID of the uploaded SARIF file. runs: - using: 'node20' + using: 'node24' main: '../lib/upload-sarif-action.js'