Problem description
GitHub announced in https://github.com/actions/runner-images/issues/ that the default Node.js version will be changed to 18 starting on Feb 13, 2023.
This is a breaking change for two of the example workflows in .github/workflows due to the state of the underlying apps in the examples directory.
Workflows incompatible with default Node.js 18:
Suggested fixes
Then rebase the following PRs which upgrade the apps to work with Node.js 18:
followed by a merge of these PRs.
Although cypress-io/github-action@v5 runs under node16, the apps run under the Node.js version in the workflow. If the version of Node.js is not set (for instance through actions/setup-node or a container parameter), then the app code runs under the default version of Node.js.
Problem description
GitHub announced in https://github.com/actions/runner-images/issues/ that the default Node.js version will be changed to 18 starting on Feb 13, 2023.
This is a breaking change for two of the example workflows in .github/workflows due to the state of the underlying apps in the examples directory.
Workflows incompatible with default Node.js 18:
Suggested fixes
Then rebase the following PRs which upgrade the apps to work with Node.js 18:
followed by a merge of these PRs.
Although cypress-io/github-action@v5 runs under node16, the apps run under the Node.js version in the workflow. If the version of Node.js is not set (for instance through
actions/setup-nodeor acontainerparameter), then the app code runs under the default version of Node.js.