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