Skip to content

Commit 8237e85

Browse files
authored
Merge pull request #1000 from github/henrymercer/bump-node-js-to-v16
Run Actions on Node 16
2 parents fdc2a90 + eea7cf1 commit 8237e85

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+29196
-8120
lines changed

.github/update-release-branch.py

+3
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,9 @@ def main():
285285
print('Migrating changelog notes from v2 to v1')
286286
subprocess.run(['sed', '-i', 's/^## 2\./## 1./g', 'CHANGELOG.md'])
287287

288+
# Remove changelog notes from v2 that don't apply to v1
289+
subprocess.run(['sed', '-i', '/^- The CodeQL Action now runs on Node\.js v16\./d', 'CHANGELOG.md'])
290+
288291
# Amend the commit generated by `npm version` to update the CHANGELOG
289292
run_git('add', 'CHANGELOG.md')
290293
run_git('commit', '-m', f'Update version and changelog for v{version}')

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [UNRELEASED]
44

5-
No user facing changes.
5+
- [v2+ only] The CodeQL Action now runs on Node.js v16. [#1000](https://github.com/github/codeql-action/pull/1000)
66

77
## 1.1.5 - 15 Mar 2022
88

analyze/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ outputs:
7272
sarif-id:
7373
description: The ID of the uploaded SARIF file.
7474
runs:
75-
using: "node12"
75+
using: "node16"
7676
main: "../lib/analyze-action.js"

autobuild/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ inputs:
77
matrix:
88
default: ${{ toJson(matrix) }}
99
runs:
10-
using: 'node12'
10+
using: 'node16'
1111
main: '../lib/autobuild-action.js'

init/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ outputs:
7373
codeql-path:
7474
description: The path of the CodeQL binary used for analysis
7575
runs:
76-
using: 'node12'
76+
using: 'node16'
7777
main: '../lib/init-action.js'

node_modules/.package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/LICENSE

100644100755
File mode changed.

node_modules/@types/node/README.md

100644100755
+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)