Skip to content

Commit 1fa41e7

Browse files
committed
fix: bump to node 20 where possible
1 parent aa5a6e2 commit 1fa41e7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/docs-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Node.js
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: 18
22+
node-version: 20
2323
cache: 'pnpm'
2424

2525
- name: Install dependencies

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Node.js
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: 18
24+
node-version: 20
2525
cache: 'pnpm'
2626

2727
- name: Install dependencies

packages/nuxt/playground/firebase.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"functions": {
3-
"runtime": "nodejs18",
3+
"runtime": "nodejs20",
44
"source": ".output/server"
55
},
66
"hosting": {

playground/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"logs": "firebase functions:log"
1212
},
1313
"engines": {
14-
"node": ">=18"
14+
"node": ">=20"
1515
},
1616
"main": "lib/index.js",
1717
"dependencies": {

0 commit comments

Comments
 (0)