Skip to content

Commit 57dc595

Browse files
authored
Merge branch 'main' into gha/browser-testing
2 parents afb0b98 + 55eac7d commit 57dc595

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/guides/continuous-integration/github-actions.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ on: push
9292
9393
jobs:
9494
cypress-run:
95-
runs-on: ubuntu-latest
95+
runs-on: ubuntu-22.04
9696
steps:
9797
- name: Checkout
9898
uses: actions/checkout@v3
@@ -174,7 +174,7 @@ on: push
174174
175175
jobs:
176176
cypress-run:
177-
runs-on: ubuntu-latest
177+
runs-on: ubuntu-22.04
178178
container: cypress/browsers:node12.18.3-chrome87-ff82
179179
steps:
180180
- name: Checkout
@@ -216,7 +216,7 @@ on: push
216216
217217
jobs:
218218
install:
219-
runs-on: ubuntu-latest
219+
runs-on: ubuntu-22.04
220220
container: cypress/browsers:node12.18.3-chrome87-ff82
221221
steps:
222222
- name: Checkout
@@ -251,7 +251,7 @@ jobs:
251251
# install:
252252
# ....
253253
cypress-run:
254-
runs-on: ubuntu-latest
254+
runs-on: ubuntu-22.04
255255
container: cypress/browsers:node12.18.3-chrome87-ff82
256256
steps:
257257
- name: Checkout
@@ -319,7 +319,7 @@ on: push
319319
320320
jobs:
321321
install:
322-
runs-on: ubuntu-latest
322+
runs-on: ubuntu-22.04
323323
container: cypress/browsers:node12.18.3-chrome87-ff82
324324
steps:
325325
- name: Checkout
@@ -370,7 +370,7 @@ jobs:
370370
# ...
371371
372372
ui-chrome-tests:
373-
runs-on: ubuntu-latest
373+
runs-on: ubuntu-22.04
374374
container: cypress/browsers:node12.18.3-chrome87-ff82
375375
needs: install
376376
strategy:
@@ -444,7 +444,7 @@ the configuration that was used in the install job.
444444
```yaml
445445
#...
446446
ui-chrome-tests:
447-
runs-on: ubuntu-latest
447+
runs-on: ubuntu-22.04
448448
container: cypress/browsers:node12.18.3-chrome87-ff82
449449
needs: install
450450
strategy:
@@ -517,7 +517,7 @@ on: push
517517
jobs:
518518
cypress-run:
519519
name: Cypress run
520-
runs-on: ubuntu-20.04
520+
runs-on: ubuntu-22.04
521521
steps:
522522
- name: Checkout
523523
uses: actions/checkout@v3
@@ -544,7 +544,7 @@ on: push
544544
jobs:
545545
cypress-run:
546546
name: Cypress run
547-
runs-on: ubuntu-20.04
547+
runs-on: ubuntu-22.04
548548
steps:
549549
- name: Checkout
550550
uses: actions/checkout@v3

0 commit comments

Comments
 (0)