diff --git a/src/content/ci/azure-pipelines.mdx b/src/content/ci/azure-pipelines.mdx index fbbbd926..c717b8d0 100644 --- a/src/content/ci/azure-pipelines.mdx +++ b/src/content/ci/azure-pipelines.mdx @@ -153,7 +153,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo jobs: - job: Cypress displayName: "Run Cypress" - container: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1 + container: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1 variables: npm_config_cache: $(Pipeline.Workspace)/.npm steps: diff --git a/src/content/ci/bitbucket-pipelines.mdx b/src/content/ci/bitbucket-pipelines.mdx index 2f45f923..265d67b5 100644 --- a/src/content/ci/bitbucket-pipelines.mdx +++ b/src/content/ci/bitbucket-pipelines.mdx @@ -96,7 +96,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo - step: name: "Cypress" # Configure the ELECTRON_EXTRA_LAUNCH_ARGS environment variable in your project settings to run Cypress tests with Chromatic. - image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1 + image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1 caches: - npm - node diff --git a/src/content/ci/circleci.mdx b/src/content/ci/circleci.mdx index 4dca3a3a..e013e392 100644 --- a/src/content/ci/circleci.mdx +++ b/src/content/ci/circleci.mdx @@ -131,7 +131,7 @@ To integrate Chromatic with your existing workflow, you'll need to add the follo executors: cypress: docker: - - image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1 + - image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1 working_directory: ~/repo chromatic-ui-testing: docker: diff --git a/src/content/ci/custom-ci-provider.mdx b/src/content/ci/custom-ci-provider.mdx index 7ac31825..4aae3664 100644 --- a/src/content/ci/custom-ci-provider.mdx +++ b/src/content/ci/custom-ci-provider.mdx @@ -68,7 +68,7 @@ To integrate Chromatic with your existing CI provider, you'll need to add the fo - run: name: "Cypress" displayName: "Run Cypress tests" - container: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1 + container: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1 environment: ELECTRON_EXTRA_LAUNCH_ARGS: "--remote-debugging-port=9222" options: diff --git a/src/content/ci/github-actions.mdx b/src/content/ci/github-actions.mdx index a88e842d..82a07b7e 100644 --- a/src/content/ci/github-actions.mdx +++ b/src/content/ci/github-actions.mdx @@ -120,7 +120,7 @@ In your `.github/workflows` directory, create a new file called `chromatic.yml` name: Run Cypress runs-on: ubuntu-latest container: - image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1 + image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1 options: --user 1001 steps: - uses: actions/checkout@v4 diff --git a/src/content/ci/gitlab.mdx b/src/content/ci/gitlab.mdx index 730c0e30..4d4fc074 100644 --- a/src/content/ci/gitlab.mdx +++ b/src/content/ci/gitlab.mdx @@ -99,7 +99,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo Cypress: stage: UI_Tests needs: [] - image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1 + image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1 variables: ELECTRON_EXTRA_LAUNCH_ARGS: "--remote-debugging-port=9222" script: diff --git a/src/content/ci/jenkins.mdx b/src/content/ci/jenkins.mdx index 0c6ebeef..4e8d775b 100644 --- a/src/content/ci/jenkins.mdx +++ b/src/content/ci/jenkins.mdx @@ -94,7 +94,7 @@ To integrate Chromatic with your existing [multistage pipeline](https://www.jenk stage('Cypress') { agent { docker { - image 'cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1' + image 'cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1' reuseNode true } }