Skip to content

Commit b945ffb

Browse files
authored
Merge pull request #223 from bustle/ci-bump-node-and-actions
bump Node to 20.x and actions/* to v4
2 parents 666ceb0 + 983388f commit b945ffb

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
timeout-minutes: 10
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Install Node
23-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
2424
with:
25-
node-version: 14.x
25+
node-version: 20.x
2626
cache: yarn
2727
- name: Install Dependencies
2828
run: yarn install --frozen-lockfile
@@ -37,10 +37,10 @@ jobs:
3737
timeout-minutes: 10
3838

3939
steps:
40-
- uses: actions/checkout@v3
41-
- uses: actions/setup-node@v3
40+
- uses: actions/checkout@v4
41+
- uses: actions/setup-node@v4
4242
with:
43-
node-version: 16.x
43+
node-version: 20.x
4444
cache: yarn
4545
- name: Install Dependencies
4646
run: yarn install --no-lockfile
@@ -64,11 +64,11 @@ jobs:
6464
- embroider-optimized
6565

6666
steps:
67-
- uses: actions/checkout@v3
67+
- uses: actions/checkout@v4
6868
- name: Install Node
69-
uses: actions/setup-node@v3
69+
uses: actions/setup-node@v4
7070
with:
71-
node-version: 16.x
71+
node-version: 20.x
7272
cache: yarn
7373
- name: Install Dependencies
7474
run: yarn install --frozen-lockfile

addon/components/tether-to-selection/component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { schedule } from '@ember/runloop';
66
import { assert } from '@ember/debug';
77
import Component from '@ember/component';
88
import { computed } from '@ember/object';
9-
import { htmlSafe } from '@ember/string';
9+
import { htmlSafe } from '@ember/template';
1010

1111
const DIALOG_MARGIN = 16;
1212

0 commit comments

Comments
 (0)