Skip to content

Commit b3cce81

Browse files
authoredJan 13, 2025··
fix(ci): pin ubuntu version for e2e component tests to 22.04 (#8245)
1 parent 9e624fa commit b3cce81

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎.github/workflows/e2e-ct.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
install:
1010
timeout-minutes: 30
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
env:
1313
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
1414
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
@@ -70,7 +70,7 @@ jobs:
7070
playwright-ct-test:
7171
timeout-minutes: 30
7272
needs: [install]
73-
runs-on: ubuntu-latest
73+
runs-on: ubuntu-22.04
7474
env:
7575
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
7676
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
@@ -162,7 +162,7 @@ jobs:
162162
merge-reports:
163163
if: always()
164164
needs: [playwright-ct-test]
165-
runs-on: ubuntu-latest
165+
runs-on: ubuntu-22.04
166166
steps:
167167
- uses: actions/checkout@v4
168168
- uses: actions/setup-node@v4
@@ -245,7 +245,7 @@ jobs:
245245
actions: write # needed to delete the cache
246246
timeout-minutes: 30
247247
name: Cleanup (${{ matrix.project }})
248-
runs-on: ubuntu-latest
248+
runs-on: ubuntu-22.04
249249
needs: [playwright-ct-test]
250250

251251
strategy:

0 commit comments

Comments
 (0)
Please sign in to comment.