Skip to content

Commit b0b42fd

Browse files
committed
ci: change ubuntu-latest to ubuntu-22.04 when run e2e test
1 parent e359e86 commit b0b42fd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/test-e2e-all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
dispatch-test-all:
1111
name: Dispatch All Test
1212
timeout-minutes: 60
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
strategy:
1515
fail-fast: false
1616
matrix:
@@ -63,7 +63,7 @@ jobs:
6363
if: always()
6464
needs: [dispatch-test-all]
6565

66-
runs-on: ubuntu-latest
66+
runs-on: ubuntu-22.04
6767
steps:
6868
- uses: actions/setup-node@v3
6969
with:

.github/workflows/test-e2e-dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
dispatch-tests:
1818
name: Dispatch Tests
1919
timeout-minutes: 60
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121
steps:
2222
- uses: actions/checkout@v3
2323
- name: Setup pnpm

.github/workflows/test-e2e-pr-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
pull-requests: write
1313
name: Comment User Tip
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- name: Download Pr Artifact
1717
uses: dawidd6/action-download-artifact@v2

.github/workflows/test-e2e-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
jobs:
1212
parse-components:
1313
name: Parse Affected Components
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
outputs:
1616
testComponents: ${{ steps.parseTitle.outputs.testComponents }}
1717
testclis: ${{ steps.parsetestCli.outputs.testClis }}
@@ -82,7 +82,7 @@ jobs:
8282

8383
name: PR E2E Test
8484
needs: parse-components
85-
runs-on: ubuntu-latest
85+
runs-on: ubuntu-22.04
8686
env:
8787
TEST_COMPONENTS: ${{ needs.parse-components.outputs.testComponents }}
8888
steps:

.github/workflows/test-unit-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
jobs:
1212
parse-components:
1313
name: Parse Affected Components
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
outputs:
1616
testComponents: ${{ steps.parseTitle.outputs.testComponents }}
1717
steps:
@@ -69,7 +69,7 @@ jobs:
6969
pr-test:
7070
name: PR Unit Test
7171
needs: parse-components
72-
runs-on: ubuntu-latest
72+
runs-on: ubuntu-22.04
7373
env:
7474
TEST_COMPONENTS: ${{ needs.parse-components.outputs.testComponents }}
7575
steps:

0 commit comments

Comments
 (0)