8000 feat(deps): remove node.js 23 by MikeMcC399 · Pull Request #1479 · cypress-io/github-action · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/example-node-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [20, 22, 23, 24]
node: [20, 22, 24]
name: Cypress E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
8000
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ See [Releases](https://github.com/cypress-io/github-action/releases) for full de

| Version | Changes |
| ------- | ------------------------------------------------------------------------------------------------------------ |
| v6.10.0 | Examples remove Node.js 23. End of support for Node.js 23. |
| v6.9.0 | Add parameter validation for `command` |
| v6.8.0 | Examples remove Node.js 18. End of support for Node.js 18. |
| v6.7.10 | Examples updated to Cypress 14 |
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ jobs:
# let's make sure our "app" works on several versions of Node
strategy:
matrix:
node: [20, 22, 23, 24]
node: [20, 22, 24]
name: E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
Expand Down Expand Up @@ -1310,7 +1310,7 @@ jobs:
# let's make sure our "app" works on several versions of Node
strategy:
matrix:
node: [20, 22, 23, 24]
node: [20, 22, 24]
name: E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
Expand Down Expand Up @@ -1344,7 +1344,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
node: [20, 22, 23, 24]
node: [20, 22, 24]
name: E2E on Node v${{ matrix.node }}
steps:
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -1812,7 +1812,7 @@ jobs:

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

- **Node.js** 20.x, 22.x, 23.x and 24.x
- **Node.js** 20.x, 22.x and 24.x

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

Expand Down
0