Skip to content

Commit f3feb00

Browse files
authored
Merge pull request #1662 from github/update-v2.3.2-8b12d99ee
Merge main into releases/v2
2 parents 8662eab + 1c9e206 commit f3feb00

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CodeQL Action Changelog
22

3+
## 2.3.2 - 27 Apr 2023
4+
5+
No user facing changes.
6+
37
## 2.3.1 - 26 Apr 2023
48

59
No user facing changes.

lib/workflow.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/workflow.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

src/workflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export function getWorkflowRunID(): number {
331331
* Get the workflow run attempt number.
332332
*/
333333
export function getWorkflowRunAttempt(): number {
334-
const workflowRunAttemptString = getRequiredEnvParam("GITHUB_RUN_ID");
334+
const workflowRunAttemptString = getRequiredEnvParam("GITHUB_RUN_ATTEMPT");
335335
const workflowRunAttempt = parseInt(workflowRunAttemptString, 10);
336336
if (Number.isNaN(workflowRunAttempt)) {
337337
throw new Error(

0 commit comments

Comments
 (0)