Skip to content

Commit a4d9332

Browse files
refactor: migrate from node 14 to node 16 new lts support (#1447)
* refactor: increased supported Node version to 16.19.0 * refactor: being able to update our actions/* to new major versions as well * chore: downgraded this again due to CI/CD dependency restriction * refactor: hardening that declaration * chore: updated node version again * refactor: updated to the newest node version --------- Co-authored-by: Josef Bredreck <[email protected]>
1 parent 7e59625 commit a4d9332

File tree

44 files changed

+46
-46
lines changed

Some content is hidden

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

44 files changed

+46
-46
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Check out the source code
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
1111

1212
- name: Set up NodeJS
13-
uses: actions/setup-node@v2
13+
uses: actions/setup-node@v3
1414
with:
15-
node-version: '14'
15+
node-version: '16'
1616

1717
- name: Setup the project
1818
run: |

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.21
1+
16.20

packages/cli/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.21
1+
16.20

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"bugs": "https://github.com/pattern-lab/patternlab-node/issues",
5050
"license": "MIT",
5151
"engines": {
52-
"node": ">=14.21.1"
52+
"node": ">=16.20.0"
5353
},
5454
"publishConfig": {
5555
"access": "public"

packages/core/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.21
1+
16.20

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"test": "tap test/*_tests.js --reporter spec --coverage"
6666
},
6767
"engines": {
68-
"node": ">=14.21.1"
68+
"node": ">=16.20.0"
6969
},
7070
"publishConfig": {
7171
"access": "public"

packages/create/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
},
1616
"gitHead": "80f62be442223e09bafb30d0529cbd768e03f2ac",
1717
"engines": {
18-
"node": ">=14.21.1"
18+
"node": ">=16.20.0"
1919
}
2020
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.21
1+
16.20

0 commit comments

Comments
 (0)