Skip to content

Commit 21ae42a

Browse files
authored
ci: replace ubuntu-latest by ubuntu-slim (#273)
* ci: replace ubuntu-latest by ubuntu-slim Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp> * chore: limit pyarrow version to <24.0.0 Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp> --------- Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
1 parent 99e551a commit 21ae42a

6 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/build-and-test.yaml

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

1010
jobs:
1111
build-and-test:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-slim
1313
continue-on-error: true
1414
strategy:
1515
matrix:

.github/workflows/cancel-previous-workflows.yaml

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

66
jobs:
77
cancel-previous-workflows:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-slim
99
timeout-minutes: 1
1010
steps:
1111
- name: Cancel previous runs

.github/workflows/deploy-document.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permissions:
2121

2222
jobs:
2323
deploy-document:
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-slim
2525
steps:
2626
- uses: actions/checkout@v4
2727
with:

.github/workflows/pre-commit.yaml

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

77
jobs:
88
pre-commit:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
timeout-minutes: 5
1111
steps:
1212
- name: Checkout repository

.github/workflows/release-drafter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
contents: write
1717
pull-requests: write
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-slim
1919
timeout-minutes: 1
2020
steps:
2121
- uses: release-drafter/release-drafter@v5

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies = [
2121
"tabulate>=0.9.0",
2222
"tqdm>=4.67.1",
2323
"returns>=0.26.0",
24+
"pyarrow<24.0.0", # NOTE: pyarrow==24.0.0 is only supported on macOS
2425
]
2526

2627
[dependency-groups]

0 commit comments

Comments
 (0)