Skip to content

Commit a029aff

Browse files
committed
Use nodejs 20 instead of nodejs 19
Node.js 19 has become unsupported, Node.js 20 is supported, let's use that >Major Node.js versions enter Current release status for six months, which gives library authors time to add support for them. After six months, odd-numbered releases (9, 11, etc.) become unsupported, and even-numbered releases (10, 12, etc.) move to Active LTS status and are ready for general use. LTS release status is "long-term support", which typically guarantees that critical bugs will be fixed for a total of 30 months. Production applications should only use Active LTS or Maintenance LTS releases. >https://nodejs.dev/en/about/releases/
1 parent 92fba0e commit a029aff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
submodules: true
162162
- uses: actions/setup-node@v3
163163
with:
164-
node-version: 19
164+
node-version: 20
165165
cache: 'yarn'
166166

167167
- name: Download Engine
@@ -262,7 +262,7 @@ jobs:
262262
uses: actions/checkout@v3
263263
- uses: actions/setup-node@v3
264264
with:
265-
node-version: 19
265+
node-version: 20
266266
cache: 'yarn'
267267

268268
- name: Set up Fastly CLI
@@ -354,7 +354,7 @@ jobs:
354354
needs: [build]
355355
strategy:
356356
matrix:
357-
node-version: [18, 19]
357+
node-version: [18, 20]
358358
steps:
359359
- uses: actions/checkout@v3
360360
- uses: actions/setup-node@v3

0 commit comments

Comments
 (0)