You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-6Lines changed: 15 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -564,7 +564,10 @@ jobs:
564
564
# let's make sure our "app" works on several versions of Node
565
565
strategy:
566
566
matrix:
567
-
node: [20, 22, 24, 25]
567
+
node:
568
+
- 22
569
+
- 24
570
+
- 25
568
571
name: E2E on Node v${{ matrix.node }}
569
572
steps:
570
573
- name: Checkout
@@ -1386,7 +1389,10 @@ jobs:
1386
1389
# let's make sure our "app" works on several versions of Node
1387
1390
strategy:
1388
1391
matrix:
1389
-
node: [20, 22, 24, 25]
1392
+
node:
1393
+
- 22
1394
+
- 24
1395
+
- 25
1390
1396
name: E2E on Node v${{ matrix.node }}
1391
1397
steps:
1392
1398
- name: Checkout
@@ -1420,7 +1426,10 @@ jobs:
1420
1426
runs-on: ubuntu-24.04
1421
1427
strategy:
1422
1428
matrix:
1423
-
node: [20, 22, 24, 25]
1429
+
node:
1430
+
- 22
1431
+
- 24
1432
+
- 25
1424
1433
name: E2E on Node v${{ matrix.node }}
1425
1434
steps:
1426
1435
- uses: actions/checkout@v6
@@ -1887,9 +1896,9 @@ jobs:
1887
1896
1888
1897
Node.js is required to run this action. The recommended version `v7` supports:
1889
1898
1890
-
- **Node.js** 20.x, 22.x, 24.x and 25.x
1899
+
- **Node.js** 22.x, 24.x and 25.x
1891
1900
1892
-
and is generally aligned with [Node.js's release schedule](https://github.com/nodejs/Release).
1901
+
and is generally aligned with [Node.js's release schedule](https://github.com/nodejs/Release#readme).
1893
1902
1894
1903
### Usage
1895
1904
@@ -1906,7 +1915,7 @@ View the [CHANGELOG](./CHANGELOG.md) document for an overview of version changes
1906
1915
## Compatibility
1907
1916
1908
1917
- `github-action@v7`is the current recommended version, uses `node24` and is compatible with Cypress `10` and above.
1909
-
- `github-action@v6`is deprecated. It uses `node20` which GitHub has deprecated. GitHub Actions will force runners to use `node24` beginning on Mar 4, 2026 - see [Deprecation of Node 20 on GitHub Actions runners](https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/).
1918
+
- `github-action@v6`is deprecated. It uses `node20` which has reached its end of life - see [Deprecation of Node 20 on GitHub Actions runners](https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/).
1910
1919
- `github-action@v6.7.9`is the minimum version required to use GitHub Actions caching services. The legacy caching service used by lower versions of the action is no longer available.
1911
1920
- `github-action` versions `v1` to `v5` are unsupported: they rely on Node.js `12` and `16` in End-of-life status.
0 commit comments