Skip to content

Commit

Permalink
feat(deps): remove node.js 21 (#1189)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 authored May 31, 2024
1 parent d1971e9 commit f88a151
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/example-node-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [18, 20, 21, 22]
node: [18, 20, 22]
name: Cypress E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ jobs:
# let's make sure our "app" works on several versions of Node
strategy:
matrix:
node: [18, 20, 21, 22]
node: [18, 20, 22]
name: E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
Expand Down Expand Up @@ -1261,7 +1261,7 @@ jobs:
# let's make sure our "app" works on several versions of Node
strategy:
matrix:
node: [18, 20, 21, 22]
node: [18, 20, 22]
name: E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
Expand Down Expand Up @@ -1295,7 +1295,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
node: [18, 20, 21, 22]
node: [18, 20, 22]
name: E2E on Node v${{ matrix.node }}
steps:
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -1624,8 +1624,7 @@ jobs:

Node.js is required to run this action. The recommended version `v6` supports:

- **Node.js** 18.x
- **Node.js** 20.x and above
- **Node.js** 18.x, 20.x and 22.x

and is generally aligned with [Node.js's release schedule](https://github.com/nodejs/Release).

Expand Down

0 comments on commit f88a151

Please sign in to comment.