Skip to content

Commit b6cdd43

Browse files
authored
Merge pull request #415 from ember-cli/drop-node-less-than-18
Drop node < 18, unblocks 'Floating Dependencies' on #414
2 parents b1493fe + 2a52206 commit b6cdd43

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
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: 14
25+
node-version: 18
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: 14
43+
node-version: 18
4444
cache: yarn
4545
- name: Install Dependencies
4646
run: yarn install --no-lockfile
@@ -73,7 +73,7 @@ jobs:
7373
- name: Install Node
7474
uses: actions/setup-node@v3
7575
with:
76-
node-version: 14
76+
node-version: 18
7777
cache: yarn
7878
- name: Install Dependencies
7979
run: yarn install --frozen-lockfile

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install node
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 14.x
19+
node-version: 18.x
2020
registry-url: 'https://registry.npmjs.org'
2121

2222
- name: install dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you add build metadata to the version, this addon will automatically append S
1111

1212
- Ember.js v3.28 or above
1313
- Ember CLI v3.28 or above
14-
- Node.js v14 or above
14+
- Node.js v18 or above
1515

1616
## Installation
1717

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"ember-source": "^3.28.0 || >= 4.0.0"
8080
},
8181
"engines": {
82-
"node": "14.* || 16.* || >= 18"
82+
"node": ">= 18"
8383
},
8484
"publishConfig": {
8585
"registry": "https://registry.npmjs.org"

0 commit comments

Comments
 (0)