You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,11 @@ A typical project can have:
34
34
```yaml
35
35
version: 2.1
36
36
orbs:
37
-
# "cypress-io/cypress@3" installs the latest published
37
+
# "cypress-io/cypress@4" installs the latest published
38
38
# version "s.x.y" of the orb. We recommend you then use
39
-
# the strict explicit version "cypress-io/cypress@3.x.y"
39
+
# the strict explicit version "cypress-io/cypress@4.x.y"
40
40
# to lock the version and prevent unexpected CI changes
41
-
cypress: cypress-io/cypress@3
41
+
cypress: cypress-io/cypress@4
42
42
workflows:
43
43
build:
44
44
jobs:
@@ -66,7 +66,7 @@ may have:
66
66
```yaml
67
67
version: 2.1
68
68
orbs:
69
-
cypress: cypress-io/cypress@3
69
+
cypress: cypress-io/cypress@4
70
70
workflows:
71
71
build:
72
72
jobs:
@@ -135,7 +135,7 @@ A single Docker container used to run Cypress tests. This default executor exten
135
135
```yaml
136
136
version: 2.1
137
137
orbs:
138
-
cypress: cypress-io/cypress@3
138
+
cypress: cypress-io/cypress@4
139
139
executor: cypress/default
140
140
jobs:
141
141
- cypress/run:
@@ -146,7 +146,7 @@ You can also use your own executor by passing in your own Docker image. See the
146
146
```yaml
147
147
version: 2.1
148
148
orbs:
149
-
cypress: cypress-io/cypress@3
149
+
cypress: cypress-io/cypress@4
150
150
executor:
151
151
docker:
152
152
image: cypress/browsers:22.15.0 # your Docker image here
@@ -161,7 +161,7 @@ jobs:
161
161
```yaml
162
162
version: 2.1
163
163
orbs:
164
-
cypress: cypress-io/cypress@3
164
+
cypress: cypress-io/cypress@4
165
165
jobs:
166
166
install:
167
167
executor: cypress/default
@@ -199,7 +199,7 @@ Cypress orb is _versioned_ so you can be sure that the configuration will _not_
199
199
200
200
You can find all changes and published orb versions for Cypress orb at [cypress-io/circleci-orb/releases](https://github.com/cypress-io/circleci-orb/releases).
201
201
202
-
We are using `cypress-io/cypress@3` version in our examples, so you get the latest published orb version 3.x.x. But we recommend locking it down to an exact version to prevent unexpected changes from suddenly breaking your builds.
202
+
We are using `cypress-io/cypress@4` version in our examples, so you get the latest published orb version `4.x.x`. But we recommend locking it down to an exact version to prevent unexpected changes from suddenly breaking your builds.
0 commit comments