From 1e860a838f56d75f29736c2387dbdafcd85cfec6 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Wed, 5 Nov 2025 08:24:02 +0100 Subject: [PATCH] Bump Cypress CircleCI Orb to v6 in examples --- docs/app/continuous-integration/circleci.mdx | 14 +++++++------- docs/app/guides/cross-browser-testing.mdx | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/app/continuous-integration/circleci.mdx b/docs/app/continuous-integration/circleci.mdx index eb1124a195..6ad8ce5337 100644 --- a/docs/app/continuous-integration/circleci.mdx +++ b/docs/app/continuous-integration/circleci.mdx @@ -40,11 +40,11 @@ A typical project can have: ```yaml title=".circleci/config.yml" version: 2.1 orbs: - # "cypress-io/cypress@4" installs the latest published + # "cypress-io/cypress@6" installs the latest published # version "s.x.y" of the orb. We recommend you then use - # the strict explicit version "cypress-io/cypress@4.x.y" + # the strict explicit version "cypress-io/cypress@6.x.y" # to lock the version and prevent unexpected CI changes - cypress: cypress-io/cypress@4 + cypress: cypress-io/cypress@6 workflows: build: jobs: @@ -64,7 +64,7 @@ run tests across 4 CI machines ```yaml title=".circleci/config.yml" version: 2.1 orbs: - cypress: cypress-io/cypress@4 + cypress: cypress-io/cypress@6 workflows: build: jobs: @@ -101,7 +101,7 @@ Check out the full