Skip to content

Commit 4b4d4e6

Browse files
committed
chore: update to node 20
1 parent 63d789b commit 4b4d4e6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ jobs:
77
deploy:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- name: Use Node.js 14
12-
uses: actions/setup-node@v2
10+
- uses: actions/checkout@v5
11+
- name: Use Node.js 20
12+
uses: actions/setup-node@v5
1313
with:
14-
node-version: 14.x
14+
node-version: 20.x
1515
cache: yarn
1616
- name: Yarn Install
1717
run: yarn install
1818
- name: Build
1919
run: yarn build
2020
- name: Wait on tests
21-
uses: lewagon/wait-on-check-action@v0.2
21+
uses: lewagon/wait-on-check-action@v1.4.0
2222
with:
2323
ref: master
2424
check-name: test
@@ -34,7 +34,7 @@ jobs:
3434
remoteFiles: "*.xml;facivon.ico;*.html;manifest.webmanifest;robots.txt;.ftp-deploy-sync-state.json"
3535
remoteDirectories: "assets"
3636
- name: Deploy on ftp
37-
uses: SamKirkland/FTP-Deploy-Action@4.2.0
37+
uses: SamKirkland/FTP-Deploy-Action@4.3.6
3838
with:
3939
server: ${{ secrets.FTP_SERVER }}
4040
username: ${{ secrets.FTP_USERNAME }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ jobs:
44
test:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
8-
- name: Use Node.js 14
9-
uses: actions/setup-node@v2
7+
- uses: actions/checkout@v5
8+
- name: Use Node.js 20
9+
uses: actions/setup-node@v5
1010
with:
11-
node-version: 14.x
11+
node-version: 20.x
1212
cache: yarn
1313
- name: Yarn Install
1414
run: yarn install --frozen-lockfile

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"webpack": "^5.78.0"
8181
},
8282
"engines": {
83-
"node": "14.* || 16.* || >= 18"
83+
"node": ">= 20"
8484
},
8585
"ember": {
8686
"edition": "octane"

0 commit comments

Comments
 (0)