Skip to content

Commit be8ed6f

Browse files
committed
Merge remote-tracking branch 'apache/main' into alamb/enable_pushdown
2 parents 36eae88 + b9a3b9f commit be8ed6f

File tree

428 files changed

+23986
-8119
lines changed

Some content is hidden

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

428 files changed

+23986
-8119
lines changed

.asf.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ github:
6262
branch-51:
6363
required_pull_request_reviews:
6464
required_approving_review_count: 1
65+
branch-52:
66+
required_pull_request_reviews:
67+
required_approving_review_count: 1
6568
pull_requests:
6669
# enable updating head branches of pull requests
6770
allow_update_branch: true

.github/workflows/audit.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444
- name: Install cargo-audit
45-
uses: taiki-e/install-action@b9c5db3aef04caffaf95a1d03931de10fb2a140f # v2.65.1
45+
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2.65.15
4646
with:
4747
tool: cargo-audit
4848
- name: Run audit check
49+
# Note: you can ignore specific RUSTSEC issues using the `--ignore` flag ,for example:
50+
# run: cargo audit --ignore RUSTSEC-2026-0001
4951
run: cargo audit

.github/workflows/rust.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ jobs:
421421
sudo apt-get update -qq
422422
sudo apt-get install -y -qq clang
423423
- name: Setup wasm-pack
424-
uses: taiki-e/install-action@b9c5db3aef04caffaf95a1d03931de10fb2a140f # v2.65.1
424+
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2.65.15
425425
with:
426426
tool: wasm-pack
427427
- name: Run tests with headless mode
@@ -709,6 +709,23 @@ jobs:
709709
./dev/update_function_docs.sh
710710
git diff --exit-code
711711
712+
examples-docs-check:
713+
name: check example README is up-to-date
714+
needs: linux-build-lib
715+
runs-on: ubuntu-latest
716+
container:
717+
image: amd64/rust
718+
719+
steps:
720+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
721+
with:
722+
submodules: true
723+
fetch-depth: 1
724+
725+
- name: Run examples docs check script
726+
run: |
727+
bash ci/scripts/check_examples_docs.sh
728+
712729
# Verify MSRV for the crates which are directly used by other projects:
713730
# - datafusion
714731
# - datafusion-substrait
@@ -724,7 +741,7 @@ jobs:
724741
- name: Setup Rust toolchain
725742
uses: ./.github/actions/setup-builder
726743
- name: Install cargo-msrv
727-
uses: taiki-e/install-action@b9c5db3aef04caffaf95a1d03931de10fb2a140f # v2.65.1
744+
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2.65.15
728745
with:
729746
tool: cargo-msrv
730747

0 commit comments

Comments
 (0)