Skip to content

Commit

Permalink
Remove Node 12.x from CI build (#1545)
Browse files Browse the repository at this point in the history
* Remove Node 12.x as it has been EOL'ed + update requirements docs
  • Loading branch information
srajiang committed Oct 18, 2022
1 parent c066a89 commit 8452c9e
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -100,7 +100,7 @@ Refer to [the module document page](https://slack.dev/node-slack-sdk/socket-mode

## Requirements

This package supports Node v12 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion docs/_main/index.md
Expand Up @@ -55,7 +55,7 @@ $ yarn add @slack/web-api @slack/events-api

## Requirements

This package supports Node v12 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion docs/_packages/oauth.md
Expand Up @@ -477,7 +477,7 @@ const installer = new InstallProvider({

### Requirements

This package supports Node v12 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion docs/_packages/socket_mode.md
Expand Up @@ -274,7 +274,7 @@ const socketModeClient = new SocketModeClient({

## Requirements

This package supports Node v12 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features from that version.

## Getting Help
Expand Down
2 changes: 1 addition & 1 deletion packages/events-api/README.md
Expand Up @@ -316,7 +316,7 @@ the `SlackEventAdapter`:

## Requirements

This package supports Node v8 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion packages/interactive-messages/README.md
Expand Up @@ -677,7 +677,7 @@ additional features of the `SlackMessageAdapter`:

## Requirements

This package supports Node v8 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion packages/oauth/README.md
Expand Up @@ -362,7 +362,7 @@ const installer = new InstallProvider({

### Requirements

This package supports Node v10 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion packages/rtm-api/README.md
Expand Up @@ -430,7 +430,7 @@ const rtm = new RTMClient(token, {

## Requirements

This package supports Node v8 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion packages/socket-mode/README.md
Expand Up @@ -222,7 +222,7 @@ const socketModeClient = new SocketModeClient({

## Requirements

This package supports Node v12 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features from that version.

## Getting Help
Expand Down
2 changes: 1 addition & 1 deletion packages/web-api/README.md
Expand Up @@ -6,7 +6,7 @@ The `@slack/web-api` package contains a simple, convenient, and configurable HTT

## Requirements

This package supports Node v12.13 and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v14 and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down

0 comments on commit 8452c9e

Please sign in to comment.