Skip to content

Commit 8ce7d28

Browse files
authored
bump node version (#126)
1 parent 29ec53f commit 8ce7d28

File tree

6 files changed

+18
-13
lines changed

6 files changed

+18
-13
lines changed

.changeset/afraid-shoes-move.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@e2b/desktop': patch
3+
---
4+
5+
updated node engines version

.github/workflows/js-sdk-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Node
3131
uses: actions/setup-node@v3
3232
with:
33-
node-version: '18.x'
33+
node-version: '20.x'
3434
registry-url: 'https://registry.npmjs.org'
3535
cache: pnpm
3636
cache-dependency-path: pnpm-lock.yaml

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ jobs:
6565
exit 1
6666
else
6767
echo "✅ No changes detected."
68-
fi
68+
fi

.github/workflows/publish_packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v4
3434
with:
35-
python-version: "3.9"
35+
python-version: '3.9'
3636

3737
- name: Install and configure Poetry
3838
uses: snok/install-poetry@v1
@@ -46,10 +46,10 @@ jobs:
4646
with:
4747
version: 9.5
4848

49-
- name: Setup Node.js 18
49+
- name: Setup Node.js 20
5050
uses: actions/setup-node@v3
5151
with:
52-
node-version: "18.x"
52+
node-version: '20.x'
5353
cache: pnpm
5454

5555
- name: Configure pnpm

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: Setup Node
3030
uses: actions/setup-node@v3
3131
with:
32-
node-version: "18.x"
33-
registry-url: "https://registry.npmjs.org"
32+
node-version: '20.x'
33+
registry-url: 'https://registry.npmjs.org'
3434
cache: pnpm
3535
cache-dependency-path: pnpm-lock.yaml
3636

@@ -69,8 +69,8 @@ jobs:
6969
- name: Setup Node
7070
uses: actions/setup-node@v3
7171
with:
72-
node-version: "18.x"
73-
registry-url: "https://registry.npmjs.org"
72+
node-version: '20.x'
73+
registry-url: 'https://registry.npmjs.org'
7474
cache: pnpm
7575
cache-dependency-path: pnpm-lock.yaml
7676

@@ -110,8 +110,8 @@ jobs:
110110
- name: Release Failed - Slack Notification
111111
uses: rtCamp/action-slack-notify@v2
112112
env:
113-
SLACK_COLOR: "#ff0000"
114-
SLACK_MESSAGE: ":here-we-go-again: :bob-the-destroyer: We need :fix-parrot: ASAP :pray:"
113+
SLACK_COLOR: '#ff0000'
114+
SLACK_MESSAGE: ':here-we-go-again: :bob-the-destroyer: We need :fix-parrot: ASAP :pray:'
115115
SLACK_TITLE: Release Failed
116116
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
117-
SLACK_CHANNEL: "monitoring-releases"
117+
SLACK_CHANNEL: 'monitoring-releases'

packages/js-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"package.json"
3535
],
3636
"engines": {
37-
"node": ">=18"
37+
"node": ">=20"
3838
},
3939
"browserslist": [
4040
"defaults"

0 commit comments

Comments
 (0)