Skip to content

Commit 66ba909

Browse files
feat: bump datafusion to 48 (#1501)
--------- Co-authored-by: Kevin Liu <[email protected]>
1 parent c04b7ac commit 66ba909

File tree

8 files changed

+1057
-712
lines changed

8 files changed

+1057
-712
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ jobs:
5252
- name: Check toml format
5353
run: make check-toml
5454

55+
- name: Install protoc
56+
uses: arduino/setup-protoc@v3
57+
with:
58+
repo-token: ${{ secrets.GITHUB_TOKEN }}
59+
5560
- name: Cargo format
5661
run: make check-fmt
5762

@@ -81,6 +86,11 @@ jobs:
8186
- name: Cache Rust artifacts
8287
uses: Swatinem/rust-cache@v2
8388

89+
- name: Install protoc
90+
uses: arduino/setup-protoc@v3
91+
with:
92+
repo-token: ${{ secrets.GITHUB_TOKEN }}
93+
8494
- name: Build
8595
run: make build
8696

@@ -123,6 +133,11 @@ jobs:
123133
- name: Setup Rust toolchain
124134
uses: ./.github/actions/setup-builder
125135

136+
- name: Install protoc
137+
uses: arduino/setup-protoc@v3
138+
with:
139+
repo-token: ${{ secrets.GITHUB_TOKEN }}
140+
126141
- name: Cache Rust artifacts
127142
uses: Swatinem/rust-cache@v2
128143

@@ -142,6 +157,10 @@ jobs:
142157
- uses: actions/checkout@v5
143158
- name: Setup Nightly Rust toolchain
144159
uses: ./.github/actions/setup-builder
160+
- name: Install protoc
161+
uses: arduino/setup-protoc@v3
162+
with:
163+
repo-token: ${{ secrets.GITHUB_TOKEN }}
145164
- name: Generate minimal versions lockfile
146165
run: |
147166
cargo generate-lockfile -Z direct-minimal-versions

.github/workflows/website.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ jobs:
4040
- name: Setup mdBook
4141
uses: peaceiris/actions-mdbook@v2
4242
with:
43-
mdbook-version: '0.4.36'
43+
mdbook-version: "0.4.36"
44+
45+
- name: Install protoc
46+
uses: arduino/setup-protoc@v3
47+
with:
48+
repo-token: ${{ secrets.GITHUB_TOKEN }}
4449

4550
- name: Build
4651
working-directory: website

0 commit comments

Comments
 (0)