diff --git a/.github/actions/check-sarif/action.yml b/.github/actions/check-sarif/action.yml index 09611f3a0d..7419828b3e 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: 'node24' + using: 'node25' main: index.js diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 6b5fa471a7..00209b27af 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -144,7 +144,7 @@ jobs: - id: checkout-base name: check out base ref for backport check - if: ${{ startsWith(github.head_ref, 'nickfyson-') }} + if: ${{ startsWith(github.head_ref, 'backport-') }} uses: actions/checkout@v4 with: ref: ${{ env.BASE_REF }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5883b57d4f..e20fcc03f2 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.12 - 13 Dec 2023 + +No user facing changes. + ## 3.22.11 - 13 Dec 2023 No user facing changes. diff --git a/analyze/action.yml b/analyze/action.yml index 2fe214b2c9..e9d119743a 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: 'node24' + using: 'node25' main: "../lib/analyze-action.js" post: "../lib/analyze-action-post.js" diff --git a/autobuild/action.yml b/autobuild/action.yml index b36e67c187..2a4d8703fa 100644 --- a/autobuild/action.yml +++ b/autobuild/action.yml @@ -13,5 +13,5 @@ inputs: $GITHUB_WORKSPACE as its working directory. required: false runs: - using: 'node24' + using: 'node25' main: '../lib/autobuild-action.js' diff --git a/init/action.yml b/init/action.yml index 0aeefc4a85..45a2f93259 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: 'node24' + using: 'node25' 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 932b9a077e..a3113f534b 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "3.22.11", + "version": "3.22.12", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package-lock.json b/package-lock.json index 5e8daf0c4b..56c0e0b169 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "3.22.11", + "version": "3.22.12", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codeql", - "version": "3.22.11", + "version": "3.22.12", "license": "MIT", "dependencies": { "@actions/artifact": "^1.1.2", diff --git a/package.json b/package.json index 5c59c2e70e..c455265291 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "3.22.11", + "version": "3.22.12", "private": true, "description": "CodeQL action", "scripts": { diff --git a/resolve-environment/action.yml b/resolve-environment/action.yml index c2535c0dc3..9cc634dcb8 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: 'node24' + using: 'node25' main: '../lib/resolve-environment-action.js' diff --git a/upload-sarif/action.yml b/upload-sarif/action.yml index ccef34f27f..195b542e1b 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: 'node24' + using: 'node25' main: '../lib/upload-sarif-action.js'