Skip to content

chore(deps): update dependency ubuntu to v24 #319

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/badges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
badges:
name: Badges
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
jobs:
# example splitting all tests across GitHub machines
prepare:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
# explicitly set the output of this job
# so that other jobs can use it
outputs:
Expand All @@ -25,7 +25,7 @@ jobs:
run: echo '${{ steps.prepare.outputs.matrix }}'

test-unit:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -41,7 +41,7 @@ jobs:

# two jobs that split 2 explicit specs
test-spec:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -63,7 +63,7 @@ jobs:
DEBUG: 'cypress-split'

test-spec-wildcard:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -86,7 +86,7 @@ jobs:
DEBUG: 'cypress-split'

test-random-order:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -106,7 +106,7 @@ jobs:
DEBUG: 'cypress-split'

test-subfolder:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -121,7 +121,7 @@ jobs:
SPLIT_INDEX: 0

test-merge-timings:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -144,7 +144,7 @@ jobs:

preview:
needs: prepare
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -164,7 +164,7 @@ jobs:

test-split:
needs: prepare
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
Expand All @@ -190,7 +190,7 @@ jobs:

test-no-summary:
needs: prepare
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -207,7 +207,7 @@ jobs:
SPLIT_SUMMARY: false

check-dependencies:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -219,7 +219,7 @@ jobs:
runTests: false

test-empty:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -230,7 +230,7 @@ jobs:
command: npm run empty

test-user-spec-list:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -241,7 +241,7 @@ jobs:
command: npm run user-specs

test-timings:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -252,7 +252,7 @@ jobs:
command: npm run timings

test-timings-split-output-file:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -265,7 +265,7 @@ jobs:
run: cat new-timings.json

test-timings-no-file:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -276,7 +276,7 @@ jobs:
command: npm run timings-no-file

test-find-timings-file:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -293,7 +293,7 @@ jobs:
SPLIT_FILE: timings.json

test-pending-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:

# using SPLIT_INDEX1 to start index at 1
test-index1:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand All @@ -340,7 +340,7 @@ jobs:
DEBUG: 'cypress-split'

test-skipped-specs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand Down Expand Up @@ -381,7 +381,7 @@ jobs:
preview,
check-dependencies,
]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
Expand Down