Skip to content

Commit b1de19a

Browse files
committed
[ci] Change ubuntu runner to 22.04
Tizen studio requires python 2.7 and libncurses5. However, Ubuntu 24.04's apt no longer supports these packages. I considered options like deadsnake(24.04), but python 2.7 is no longer supported. Rather than installing this manually, I decided that tizen studio is not ready for 24.04 yet, so I fixed the version of ubuntu runnner to 22.04.
1 parent af9f4a3 commit b1de19a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/analyze.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
dart_analyze:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/checkout@v3
1010
- uses: subosito/flutter-action@v2
@@ -14,7 +14,7 @@ jobs:
1414
run: ./tools/tools_runner.sh analyze --custom-analysis=$(ls packages | tr '\n' ',')
1515

1616
format:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
steps:
1919
- uses: actions/checkout@v3
2020
- uses: subosito/flutter-action@v2

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/checkout@v3
1010
with:

.github/workflows/pull_request_label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request_target]
44

55
jobs:
66
triage:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/labeler@v4
1010
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
release:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
if: ${{ github.repository_owner == 'flutter-tizen' }}
1313
steps:
1414
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)