Skip to content

Commit 89a1cf6

Browse files
Update all workflows to use Node.js 20 for undici compatibility
Signed-off-by: Gavin Didrichsen <[email protected]>
1 parent 7f67e5b commit 89a1cf6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/mend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17-
- name: 'setup node: 18 platform: ${{ runner.os }}'
17+
- name: 'setup node: 20 platform: ${{ runner.os }}'
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: 18
20+
node-version: 20
2121

2222
- name: npm install
2323
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55

66
env:
7-
NODE_VERSION: '18.x'
7+
NODE_VERSION: '20'
88

99
jobs:
1010
release:

.github/workflows/release_prep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: "Release Prep"
1717
runs-on: "ubuntu-latest"
1818
env:
19-
NODE_VERSION: "18"
19+
NODE_VERSION: "20"
2020

2121
steps:
2222
- name: "Checkout"

0 commit comments

Comments
 (0)