Skip to content

Commit

Permalink
chore: update ubuntu version in workflows of frontend (#17445)
Browse files Browse the repository at this point in the history
* chore: update ubuntu version in workflows of frontend
  • Loading branch information
koji authored Feb 6, 2025
1 parent 0ceaefd commit 926b5cd
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/app-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ env:
jobs:
js-unit-test:
# unit tests for the app's view layer (not the node layer)
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
name: 'opentrons app frontend unit tests'
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:
deploy-release-app:
name: 'Deploy built app artifacts to S3'
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
needs:
['js-unit-test', 'backend-unit-test', 'build-app', 'determine-build-type']
if: contains(fromJSON(needs.determine-build-type.outputs.variants), 'release') || contains(fromJSON(needs.determine-build-type.outputs.variants), 'internal-release')
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/components-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
js-unit-test:
name: 'components unit tests'
timeout-minutes: 30
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-node@v4'
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

build-components-storybook:
name: 'build components artifact'
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
if: github.event_name != 'pull_request'
needs: ['js-unit-test']
steps:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
deploy-components:
name: 'deploy components storybook artifact to S3'
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
needs:
['js-unit-test', 'build-components-storybook', 'determine-build-type']
if: needs.determine-build-type.outputs.type != 'none'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ env:
jobs:
checks:
name: 'js checks'
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
timeout-minutes: 20
steps:
- uses: 'actions/checkout@v4'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ll-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
js-unit-test:
name: 'labware library unit tests'
timeout-minutes: 20
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-node@v4'
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
name: 'labware library e2e tests'
needs: ['js-unit-test']
timeout-minutes: 30
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
steps:
- uses: 'actions/checkout@v4'
# https://github.com/actions/checkout/issues/290
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
name: 'build labware library artifact'
needs: ['js-unit-test']
timeout-minutes: 30
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
if: github.event_name != 'pull_request'
steps:
- uses: 'actions/checkout@v4'
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
path: labware-library/dist
deploy-ll:
name: 'deploy LL artifact to S3'
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
needs: ['js-unit-test', 'e2e-test', 'build-ll']
if: github.event_name != 'pull_request'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opentrons-ai-client-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:

jobs:
js-unit-test:
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
name: 'opentrons ai frontend unit tests'
timeout-minutes: 60
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/react-api-client-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
js-unit-test:
name: 'api-client and react-api-client unit tests'
timeout-minutes: 30
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-node@v4'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/step-generation-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ env:
jobs:
js-unit-test:
name: 'step generation unit tests'
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
timeout-minutes: 30
steps:
- uses: 'actions/checkout@v4'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/usb-bridge-lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
lint:
name: 'usb-bridge linting'
timeout-minutes: 10
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
steps:
- uses: 'actions/checkout@v4'
with:
Expand All @@ -60,7 +60,7 @@ jobs:
name: 'usb-bridge package tests'
timeout-minutes: 10
needs: [lint]
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-24.04'
steps:
- uses: 'actions/checkout@v4'
with:
Expand Down

0 comments on commit 926b5cd

Please sign in to comment.