Skip to content

Commit 9ce4cde

Browse files
committed
fix: Require node 18.13 for File Buffer support
1 parent d117838 commit 9ce4cde

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434
- uses: actions/setup-node@v3
3535
with:
36-
node-version: 18
36+
node-version: ">=18.13 <19"
3737
- run: npm install
3838
- run: npm test
3939
env:
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v4
4545
- uses: actions/setup-node@v3
4646
with:
47-
node-version: 18
47+
node-version: ">=18.13 <19"
4848
- run: npm install
4949
- run: npm run lint
5050
docs:
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v4
5454
- uses: actions/setup-node@v3
5555
with:
56-
node-version: 18
56+
node-version: ">=18.13 <19"
5757
- run: npm install
5858
- run: npm run docs
5959
- uses: JustinBeckwith/linkinator-action@v1
@@ -68,6 +68,6 @@ jobs:
6868
ref: main
6969
- uses: actions/setup-node@v3
7070
with:
71-
node-version: 18
71+
node-version: ">=18.13 <19"
7272
- run: npm install --save googleapis/release-please#${{ github.ref }}
7373
- run: npm run build

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"yargs": "^17.0.0"
101101
},
102102
"engines": {
103-
"node": ">=18.0.0"
103+
"node": ">=18.13.0"
104104
},
105105
"overrides": {
106106
"tmp": "0.2.5"

0 commit comments

Comments
 (0)