Skip to content

Commit 59810eb

Browse files
authored
feat(deps): remove node.js 16 (#1021)
1 parent 74346c0 commit 59810eb

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/example-node-versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node: [16, 18, 20]
17+
node: [18, 20]
1818
name: Cypress E2E on Node v${{ matrix.node }}
1919
steps:
2020
- name: Setup Node

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ See [Releases](https://github.com/cypress-io/github-action/releases) for full de
66

77
| Version | Changes |
88
| ------- | ------------------------------------------------------------------------------------------------------------------------------------ |
9+
| v6.5.0 | Examples remove Node.js 16. End of support for Node.js 16. |
910
| v6.4.0 | Action adds PR number and URL if available when recording |
1011
| v6.3.0 | v6 is recommended action version |
1112
| v6.2.0 | Examples updated to Cypress 13 |

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ This information is for Cypress.io Members or Collaborators who merge pull reque
107107
```text
108108
fix: upgrade dependency X
109109
110-
BREAKING CHANGE: requires minimum Node.js 16 to run
110+
BREAKING CHANGE: requires minimum Node.js 18 to run
111111
```
112112
113113
1. New versions of this action will be released automatically by the CI when merged to the `master` branch, see [.github/workflows/main.yml](.github/workflows/main.yml). This will create a new [GitHub release](https://github.com/cypress-io/github-action/releases) and will update the current highest branch from the series `v5`, `v6`, ... etc. Thus specifying `uses: cypress-io/github-action@v6` (or higher version if available) selects the new version automatically. This **will not** push the latest release to GitHub Marketplace.

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ jobs:
410410
# let's make sure our "app" works on several versions of Node
411411
strategy:
412412
matrix:
413-
node: [16, 18, 20]
413+
node: [18, 20]
414414
name: E2E on Node v${{ matrix.node }}
415415
steps:
416416
- name: Setup Node
@@ -1133,7 +1133,7 @@ jobs:
11331133
# let's make sure our "app" works on several versions of Node
11341134
strategy:
11351135
matrix:
1136-
node: [16, 18, 20]
1136+
node: [18, 20]
11371137
name: E2E on Node v${{ matrix.node }}
11381138
steps:
11391139
- name: Setup Node
@@ -1167,7 +1167,7 @@ jobs:
11671167
runs-on: ubuntu-22.04
11681168
strategy:
11691169
matrix:
1170-
node: [16, 18, 20]
1170+
node: [18, 20]
11711171
name: E2E on Node v${{ matrix.node }}
11721172
steps:
11731173
- uses: actions/setup-node@v3
@@ -1509,7 +1509,6 @@ If no related PR is detected, `CYPRESS_PULL_REQUEST_ID` and `CYPRESS_PULL_REQUES
15091509

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

1512-
- **Node.js** 16.x
15131512
- **Node.js** 18.x
15141513
- **Node.js** 20.x and above
15151514

@@ -1521,7 +1520,7 @@ and is generally aligned with [Node.js's release schedule](https://github.com/no
15211520

15221521
[![Node versions example](https://github.com/cypress-io/github-action/workflows/example-node-versions/badge.svg?branch=master)](.github/workflows/example-node-versions.yml)
15231522

1524-
Cypress itself runs with a fixed Node.js version specified by the [runs.using](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-javascript-actions) parameter of [action.yml](action.yml). `github-action@v5` uses `node16` and `github-action@v6` uses `node20`.
1523+
Cypress itself runs with a fixed Node.js version specified by the [runs.using](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-javascript-actions) parameter of [action.yml](action.yml). `github-action@v6` uses `node20`.
15251524

15261525
## Changelog
15271526

0 commit comments

Comments
 (0)