Skip to content

Commit 55eac7d

Browse files
authored
Merge pull request #5154 from MikeMcC399/gha/ubuntu-22
Set github-action examples to ubuntu-22.04
2 parents a108993 + aec1b87 commit 55eac7d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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

+9-9
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
@@ -149,7 +149,7 @@ on: push
149149
150150
jobs:
151151
cypress-run:
152-
runs-on: ubuntu-latest
152+
runs-on: ubuntu-22.04
153153
container: cypress/browsers:node12.18.3-chrome87-ff82
154154
steps:
155155
- name: Checkout
@@ -191,7 +191,7 @@ on: push
191191
192192
jobs:
193193
install:
194-
runs-on: ubuntu-latest
194+
runs-on: ubuntu-22.04
195195
container: cypress/browsers:node12.18.3-chrome87-ff82
196196
steps:
197197
- name: Checkout
@@ -226,7 +226,7 @@ jobs:
226226
# install:
227227
# ....
228228
cypress-run:
229-
runs-on: ubuntu-latest
229+
runs-on: ubuntu-22.04
230230
container: cypress/browsers:node12.18.3-chrome87-ff82
231231
steps:
232232
- name: Checkout
@@ -294,7 +294,7 @@ on: push
294294
295295
jobs:
296296
install:
297-
runs-on: ubuntu-latest
297+
runs-on: ubuntu-22.04
298298
container: cypress/browsers:node12.18.3-chrome87-ff82
299299
steps:
300300
- name: Checkout
@@ -345,7 +345,7 @@ jobs:
345345
# ...
346346
347347
ui-chrome-tests:
348-
runs-on: ubuntu-latest
348+
runs-on: ubuntu-22.04
349349
container: cypress/browsers:node12.18.3-chrome87-ff82
350350
needs: install
351351
strategy:
@@ -419,7 +419,7 @@ the configuration that was used in the install job.
419419
```yaml
420420
#...
421421
ui-chrome-tests:
422-
runs-on: ubuntu-latest
422+
runs-on: ubuntu-22.04
423423
container: cypress/browsers:node12.18.3-chrome87-ff82
424424
needs: install
425425
strategy:
@@ -492,7 +492,7 @@ on: push
492492
jobs:
493493
cypress-run:
494494
name: Cypress run
495-
runs-on: ubuntu-20.04
495+
runs-on: ubuntu-22.04
496496
steps:
497497
- name: Checkout
498498
uses: actions/checkout@v3
@@ -519,7 +519,7 @@ on: push
519519
jobs:
520520
cypress-run:
521521
name: Cypress run
522-
runs-on: ubuntu-20.04
522+
runs-on: ubuntu-22.04
523523
steps:
524524
- name: Checkout
525525
uses: actions/checkout@v3

0 commit comments

Comments
 (0)