Skip to content

Commit

Permalink
Merge pull request #5154 from MikeMcC399/gha/ubuntu-22
Browse files Browse the repository at this point in the history
Set github-action examples to ubuntu-22.04
  • Loading branch information
jaffrepaul committed Apr 11, 2023
2 parents a108993 + aec1b87 commit 55eac7d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/guides/continuous-integration/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ on: push
jobs:
cypress-run:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -149,7 +149,7 @@ on: push
jobs:
cypress-run:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- name: Checkout
Expand Down Expand Up @@ -191,7 +191,7 @@ on: push
jobs:
install:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- name: Checkout
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
# install:
# ....
cypress-run:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- name: Checkout
Expand Down Expand Up @@ -294,7 +294,7 @@ on: push
jobs:
install:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- name: Checkout
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
# ...
ui-chrome-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container: cypress/browsers:node12.18.3-chrome87-ff82
needs: install
strategy:
Expand Down Expand Up @@ -419,7 +419,7 @@ the configuration that was used in the install job.
```yaml
#...
ui-chrome-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container: cypress/browsers:node12.18.3-chrome87-ff82
needs: install
strategy:
Expand Down Expand Up @@ -492,7 +492,7 @@ on: push
jobs:
cypress-run:
name: Cypress run
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -519,7 +519,7 @@ on: push
jobs:
cypress-run:
name: Cypress run
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 55eac7d

Please sign in to comment.