Skip to content

Commit 57c6dd5

Browse files
authored
Drop Node.js 18 support (#1302)
Resolved #1259 TODO - [x] Remove CI by Node.js 18 from Status checks that are required.
1 parent bce1c7a commit 57c6dd5

File tree

16 files changed

+51
-52
lines changed

16 files changed

+51
-52
lines changed

.github/workflows/deploy-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2121
with:
22-
node-version: 18
22+
node-version: 24
2323

2424
- name: Setup Pages
2525
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0

.github/workflows/generate-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2626
id: setup_node_id
2727
with:
28-
node-version: 18
28+
node-version: 24
2929
- name: Set up Java
3030
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
3131
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Setup .npmrc file to publish to GitHub Packages
2121
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2222
with:
23-
node-version: 18
23+
node-version: 24
2424
registry-url: 'https://registry.npmjs.org'
2525
- run: npm install
2626
- name: Update version in package.json, package-lock.json, and lib/version.ts

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
matrix:
1616
# https://nodejs.org/en/about/releases/
1717
node:
18-
- '18'
1918
- '20'
2019
- '20.12.2'
2120
- '22'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ line-bot-sdk-nodejs documentation: https://line.github.io/line-bot-sdk-nodejs/#g
1818

1919
## Requirements
2020

21-
* **Node.js** 18 or higher
21+
* **Node.js** 20 or higher
2222

2323
## Installation
2424

docs/getting-started/requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Requirements
22

3-
* **Node.js** >= 18.
3+
* **Node.js** >= 20.
44
* It uses ES2022.
55
* [**npm**](https://www.npmjs.com/), preferably >=10
66

examples/echo-bot-esm/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/echo-bot-ts-cjs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This tutorial will help you set up a LINE Echo Bot from scratch.
66

77
## Prerequisite
88

9-
- Node.js version 18 or higher
9+
- Node.js version 20 or higher
1010
- You've created a channel in the LINE Developers Console, and got your channel access token and channel secret.
1111
- Read https://developers.line.biz/en/docs/messaging-api/getting-started/#using-console if you haven't done this yet.
1212

examples/echo-bot-ts-cjs/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/echo-bot-ts-esm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This tutorial will help you set up a LINE Echo Bot from scratch.
66

77
## Prerequisite
88

9-
- Node.js version 18 or higher
9+
- Node.js version 20 or higher
1010
- You've created a channel in the LINE Developers Console, and got your channel access token and channel secret.
1111
- Read https://developers.line.biz/en/docs/messaging-api/getting-started/#using-console if you haven't done this yet.
1212

0 commit comments

Comments
 (0)