Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update Docker image examples to supported Node.js 18 #5492

Merged
merged 1 commit into from
Sep 25, 2023
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 docs/guides/continuous-integration/aws-codebuild.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ version: 0.2

## AWS CodeBuild Batch configuration
## https://docs.aws.amazon.com/codebuild/latest/userguide/batch-build-buildspec.html
## Define build to run using the "cypress/browsers:node12.14.1-chrome85-ff81" image from the Cypress Amazon ECR Public Gallery
## Define build to run using the "cypress/browsers:node18.12.0-chrome106-ff106" image from the Cypress Amazon ECR Public Gallery
batch:
fast-fail: false
build-list:
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/continuous-integration/bitbucket-pipelines.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ example, this allows us to run the tests in Firefox by passing the
`--browser firefox` attribute to `cypress run`.

```yaml
image: cypress/browsers:node12.14.1-chrome85-ff81
image: cypress/browsers:node18.12.0-chrome106-ff106

pipelines:
default:
Expand Down Expand Up @@ -89,7 +89,7 @@ Artifacts from a job can be defined by providing paths to the `artifacts`
attribute.

```yaml
image: cypress/browsers:node12.14.1-chrome85-ff81
image: cypress/browsers:node18.12.0-chrome106-ff106

pipelines:
default:
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/getting-started/installing-cypress.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ container with the Node.js process.
ui:
image: cypress/base:latest
# if targeting a specific node version, use e.g.
# image: cypress/base:14
# image: cypress/base:18.12.1
```

`cypress/base` is a drop-in replacement for
Expand Down