Skip to content

Commit 0651d5b

Browse files
committed
Merge remote-tracking branch 'origin/main' into update-datafusion
Signed-off-by: Xuanwo <[email protected]>
2 parents 5046eb8 + 0a06c3e commit 0651d5b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+5223
-1633
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
uses: ./.github/actions/setup-builder
5959

6060
- name: Check License Header
61-
uses: apache/skywalking-eyes/header@v0.7.0
61+
uses: apache/skywalking-eyes/header@v0.8.0
6262

6363
- name: Check toml format
6464
run: make check-toml
@@ -89,6 +89,18 @@ jobs:
8989
- macos-latest
9090
- windows-latest
9191
steps:
92+
- name: Maximize build space (Ubuntu)
93+
if: matrix.os == 'ubuntu-latest'
94+
uses: easimon/maximize-build-space@master
95+
with:
96+
remove-dotnet: "true"
97+
remove-android: "true"
98+
remove-haskell: "true"
99+
remove-codeql: "true"
100+
remove-docker-images: "true"
101+
root-reserve-mb: 10240
102+
temp-reserve-mb: 10240
103+
92104
- uses: actions/checkout@v5
93105

94106
- name: Setup Rust toolchain

.github/workflows/ci_typos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v5
4444
- name: Check typos
45-
uses: crate-ci/typos@v1.36.3
45+
uses: crate-ci/typos@v1.38.1

.github/workflows/release_python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
command: sdist
108108
args: -o dist
109109
- name: Upload sdist
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v5
111111
with:
112112
name: wheels-sdist
113113
path: bindings/python/dist
@@ -159,7 +159,7 @@ jobs:
159159
command: build
160160
args: --release -o dist
161161
- name: Upload wheels
162-
uses: actions/upload-artifact@v4
162+
uses: actions/upload-artifact@v5
163163
with:
164164
name: wheels-${{ matrix.os }}-${{ matrix.target }}
165165
path: bindings/python/dist
@@ -178,7 +178,7 @@ jobs:
178178

179179
steps:
180180
- name: Download all the dists
181-
uses: actions/download-artifact@v5
181+
uses: actions/download-artifact@v6
182182
with:
183183
pattern: wheels-*
184184
merge-multiple: true

.github/workflows/release_python_nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
args: -o dist
5757

5858
- name: Upload sdist
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: wheels-sdist
6262
path: bindings/python/dist
@@ -102,7 +102,7 @@ jobs:
102102
args: --release -o dist
103103

104104
- name: Upload wheels
105-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@v5
106106
with:
107107
name: wheels-${{ matrix.os }}-${{ matrix.target }}
108108
path: bindings/python/dist
@@ -120,7 +120,7 @@ jobs:
120120

121121
steps:
122122
- name: Download all the dists
123-
uses: actions/download-artifact@v5
123+
uses: actions/download-artifact@v6
124124
with:
125125
pattern: wheels-*
126126
merge-multiple: true

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
if: github.repository_owner == 'apache'
3232
runs-on: ubuntu-22.04
3333
steps:
34-
- uses: actions/stale@v10.0.0
34+
- uses: actions/stale@v10.1.0
3535
with:
3636
stale-issue-label: 'stale'
3737
exempt-issue-labels: 'not-stale'

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ cargo 1.69.0 (6e9a83356 2023-04-12)
103103

104104
Currently, iceberg-rust uses Docker to set up environment for integration tests. Native Docker has some limitations, please check (https://github.com/apache/iceberg-rust/pull/748). Please use Orbstack or Podman.
105105

106-
For MacOS users, you can install [OrbStack as a docker alternative](reference/orbstack.md).
107-
For Podman users, refer to [Using Podman instead of Docker](reference/podman.md)
106+
For MacOS users, you can install [OrbStack as a docker alternative](website/src/reference/orbstack.md).
107+
For Podman users, refer to [Using Podman instead of Docker](website/src/reference/podman.md)
108108

109109
## Build
110110

0 commit comments

Comments
 (0)