Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Ubuntu in GitHub Actions examples to ubuntu-24.04 #6046

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/accessibility/results-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ env:

jobs:
run-cypress:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install
run: npm install
- name: Run
Expand Down
16 changes: 8 additions & 8 deletions docs/app/continuous-integration/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ on: push

jobs:
cypress-run:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -180,7 +180,7 @@ on: push

jobs:
cypress-run:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
options: --user 1001
Expand Down Expand Up @@ -229,7 +229,7 @@ on: push

jobs:
install:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -249,7 +249,7 @@ jobs:
path: build

cypress-run:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: install
steps:
- name: Checkout
Expand Down Expand Up @@ -325,7 +325,7 @@ on: push

jobs:
install:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
# ... omitted install job from above

cypress-run:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: install
strategy:
# don't fail the entire matrix on failure
Expand Down Expand Up @@ -494,7 +494,7 @@ on: push
jobs:
cypress-run:
name: Cypress run
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -521,7 +521,7 @@ on: push
jobs:
cypress-run:
name: Cypress run
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions docs/ui-coverage/results-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,10 @@ env:

jobs:
run-cypress:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install
run: npm install
- name: Run
Expand Down