Skip to content

Commit

Permalink
chore(deps): update dependency ubuntu to v24
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 8, 2024
1 parent 52f5b39 commit 99b3d78
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Artifacts
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
name: Artifacts
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: basic
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chrome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: E2E on Chrome
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
# let's make sure our tests pass on Chrome browser
name: E2E on Chrome
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/custom-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Custom container
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container: cypress/browsers:node12.13.0-chrome78-ff70
name: Tests inside custom image
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: End-to-end tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
# let's make sure our "app" works on several versions of Node
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: merge
on: [push, pull_request]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
name: e2e
steps:
# you can find all sorts of interesting stuff in the event object
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/separate-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: install
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/separate-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [push]
# 2. the "test-job" downloads the build site and runs tests
jobs:
install-job:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -28,7 +28,7 @@ jobs:
public
test-job:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: install-job
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/serve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: serve
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/subfolder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: subfolder
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: tags
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
# let's make sure our "app" works on several versions of Node
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/timeouts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: timeouts
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
# stop the job if it runs over 10 minutes
# to prevent a hanging process from using all your CI minutes
timeout-minutes: 10
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Ubuntu
on: [push]
jobs:
ubuntu-20:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
# print Ubuntu version
- run: cat /etc/lsb-release
Expand All @@ -17,7 +17,7 @@ jobs:
CYPRESS_firstName: Joe

ubuntu-22:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
# print Ubuntu version
- run: cat /etc/lsb-release
Expand Down

0 comments on commit 99b3d78

Please sign in to comment.