From fb49e2017311dba22dbd2c9ffb8653d6a28f98cf Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Thu, 30 Mar 2023 11:24:35 +0200 Subject: [PATCH] use ubuntu-22.04 in GHA examples --- .../continuous-integration/github-actions.mdx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/guides/continuous-integration/github-actions.mdx b/docs/guides/continuous-integration/github-actions.mdx index eabb9f9aed..52e21e53cc 100644 --- a/docs/guides/continuous-integration/github-actions.mdx +++ b/docs/guides/continuous-integration/github-actions.mdx @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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: @@ -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: @@ -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 @@ -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