Skip to content

Commit 2f1c894

Browse files
Drop support for node 16 (#167)
1 parent fc67652 commit 2f1c894

File tree

6 files changed

+168
-1323
lines changed

6 files changed

+168
-1323
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Node
2323
uses: actions/setup-node@v3
2424
with:
25-
node-version: 16.x
25+
node-version: 18.x
2626
cache: yarn
2727
- name: Install Dependencies
2828
run: yarn install --frozen-lockfile
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v3
4141
- uses: actions/setup-node@v3
4242
with:
43-
node-version: 16.x
43+
node-version: 18.x
4444
cache: yarn
4545
- name: Install Dependencies
4646
run: yarn install --no-lockfile
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install Node
7171
uses: actions/setup-node@v3
7272
with:
73-
node-version: 16.x
73+
node-version: 18.x
7474
cache: yarn
7575
- name: Install Dependencies
7676
run: yarn install --frozen-lockfile

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 16.20.0
1+
nodejs 18.19.0
File renamed without changes.
File renamed without changes.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"broccoli-asset-rev": "^3.0.0",
5757
"concurrently": "^8.0.1",
5858
"ember-cli": "~4.12.1",
59-
"ember-cli-addon-docs": "^5.0.0",
59+
"ember-cli-addon-docs": "^7.0.0",
6060
"ember-cli-addon-docs-yuidoc": "^1.0.0",
6161
"ember-cli-dependency-checker": "^3.3.1",
6262
"ember-cli-deploy": "^2.0.0",
@@ -97,7 +97,7 @@
9797
"ember-source": "^4.0.0 || ^5.0.0"
9898
},
9999
"engines": {
100-
"node": "16.* || >= 18"
100+
"node": ">= 18"
101101
},
102102
"publishConfig": {
103103
"registry": "https://registry.npmjs.org"

0 commit comments

Comments
 (0)