From 665541b4f0797ebf6ff3609e0796879ed7c85a1f Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 13:48:41 +0900 Subject: [PATCH 01/11] fix permissions for `audit.yml` --- .github/workflows/audit.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index b3c1e10584a0e..29bbb14ab7740 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -33,9 +33,12 @@ on: paths: - "**/Cargo.toml" - "**/Cargo.lock" - + merge_group: +permissions: + content: read + jobs: security_audit: runs-on: ubuntu-latest From f492e567421ae10b97ec297947502157043eee21 Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 13:48:47 +0900 Subject: [PATCH 02/11] trigger audit job --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 82081c1e42930..60b21f77b15d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,6 +79,7 @@ repository = "https://github.com/apache/datafusion" # Define Minimum Supported Rust Version (MSRV) rust-version = "1.88.0" # Define DataFusion version +# test version = "53.1.0" [workspace.dependencies] From a9bdfe3bbe78e2c5bd5f3c06665df36cbc2eb153 Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 13:53:33 +0900 Subject: [PATCH 03/11] test trigger --- datafusion/doc/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/datafusion/doc/Cargo.toml b/datafusion/doc/Cargo.toml index c1368c1531533..8b7ff127156f2 100644 --- a/datafusion/doc/Cargo.toml +++ b/datafusion/doc/Cargo.toml @@ -31,6 +31,7 @@ rust-version = { workspace = true } [package.metadata.docs.rs] all-features = true +# test # Note: add additional linter rules in lib.rs. # Rust does not support workspace + new linter rules in subcrates yet # https://github.com/rust-lang/cargo/issues/13157 From df8049fca3eb1dcb8021dce8da975dffb453d646 Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 13:55:28 +0900 Subject: [PATCH 04/11] typo --- .github/workflows/audit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 29bbb14ab7740..7ce63082641da 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -37,7 +37,7 @@ on: merge_group: permissions: - content: read + contents: read jobs: security_audit: From 7b839fa14a1ac98d2b309617c40713fd0de337ca Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 13:56:18 +0900 Subject: [PATCH 05/11] test --- datafusion/doc/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/datafusion/doc/Cargo.toml b/datafusion/doc/Cargo.toml index 8b7ff127156f2..c1368c1531533 100644 --- a/datafusion/doc/Cargo.toml +++ b/datafusion/doc/Cargo.toml @@ -31,7 +31,6 @@ rust-version = { workspace = true } [package.metadata.docs.rs] all-features = true -# test # Note: add additional linter rules in lib.rs. # Rust does not support workspace + new linter rules in subcrates yet # https://github.com/rust-lang/cargo/issues/13157 From aa5e893faebf163dfb2b5a4436eed1445f47006e Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 13:57:10 +0900 Subject: [PATCH 06/11] test --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 60b21f77b15d3..82081c1e42930 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,6 @@ repository = "https://github.com/apache/datafusion" # Define Minimum Supported Rust Version (MSRV) rust-version = "1.88.0" # Define DataFusion version -# test version = "53.1.0" [workspace.dependencies] From 2f1f77e1f3aa9caca3d022ee92490b655143bfda Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 14:18:17 +0900 Subject: [PATCH 07/11] fix more permissions --- .github/workflows/dependencies.yml | 3 +++ .github/workflows/docs_pr.yaml | 4 +++- .github/workflows/large_files.yml | 3 +++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 3b2cc243d4967..ef175de2aa292 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -37,6 +37,9 @@ on: # https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow workflow_dispatch: +permissions: + contents: read + jobs: depcheck: name: circular dependency check diff --git a/.github/workflows/docs_pr.yaml b/.github/workflows/docs_pr.yaml index dab81fd6452da..4b8d25b0611eb 100644 --- a/.github/workflows/docs_pr.yaml +++ b/.github/workflows/docs_pr.yaml @@ -33,8 +33,10 @@ on: # https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow workflow_dispatch: +permissions: + contents: read + jobs: - # Test doc build linux-test-doc-build: name: Test doc build diff --git a/.github/workflows/large_files.yml b/.github/workflows/large_files.yml index 12a5599189216..746d201da2eba 100644 --- a/.github/workflows/large_files.yml +++ b/.github/workflows/large_files.yml @@ -25,6 +25,9 @@ on: pull_request: merge_group: +permissions: + contents: read + jobs: check-files: runs-on: ubuntu-slim From 6c0c775e1cebdab080073a52bd46f72b3c8f8229 Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 14:20:12 +0900 Subject: [PATCH 08/11] fix dev.yml permissions --- .github/workflows/dev.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index a247f07333ee5..34b74f21095fd 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -27,6 +27,9 @@ concurrency: group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} cancel-in-progress: true +permissions: + contents: read + jobs: license-header-check: runs-on: ubuntu-latest @@ -66,7 +69,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - # Version fixed on purpose. It uses heuristics to detect typos, so upgrading + # Version fixed on purpose. It uses heuristics to detect typos, so upgrading # it may cause checks to fail more often. # We can upgrade it manually once a while. - name: Install typos-cli From 48ffe3fc38798f0c3861423d7dee40a8de543ea9 Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 14:29:33 +0900 Subject: [PATCH 09/11] trigger extra actions --- datafusion/doc/Cargo.toml | 1 + docs/build.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/datafusion/doc/Cargo.toml b/datafusion/doc/Cargo.toml index c1368c1531533..8b7ff127156f2 100644 --- a/datafusion/doc/Cargo.toml +++ b/datafusion/doc/Cargo.toml @@ -31,6 +31,7 @@ rust-version = { workspace = true } [package.metadata.docs.rs] all-features = true +# test # Note: add additional linter rules in lib.rs. # Rust does not support workspace + new linter rules in subcrates yet # https://github.com/rust-lang/cargo/issues/13157 diff --git a/docs/build.sh b/docs/build.sh index e12e3c1a5f202..2a2c7cb54a463 100755 --- a/docs/build.sh +++ b/docs/build.sh @@ -18,6 +18,7 @@ # under the License. # +# test set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" From 5f5c4663ef8b72838aceedc3deced9ea4a07c9a1 Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Sat, 25 Apr 2026 14:30:12 +0900 Subject: [PATCH 10/11] Revert "trigger extra actions" This reverts commit 48ffe3fc38798f0c3861423d7dee40a8de543ea9. --- datafusion/doc/Cargo.toml | 1 - docs/build.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/datafusion/doc/Cargo.toml b/datafusion/doc/Cargo.toml index 8b7ff127156f2..c1368c1531533 100644 --- a/datafusion/doc/Cargo.toml +++ b/datafusion/doc/Cargo.toml @@ -31,7 +31,6 @@ rust-version = { workspace = true } [package.metadata.docs.rs] all-features = true -# test # Note: add additional linter rules in lib.rs. # Rust does not support workspace + new linter rules in subcrates yet # https://github.com/rust-lang/cargo/issues/13157 diff --git a/docs/build.sh b/docs/build.sh index 2a2c7cb54a463..e12e3c1a5f202 100755 --- a/docs/build.sh +++ b/docs/build.sh @@ -18,7 +18,6 @@ # under the License. # -# test set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" From 1084d045d7e90360c628195f29be6dc29e40b0dc Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Tue, 28 Apr 2026 13:11:47 +0900 Subject: [PATCH 11/11] fix merge --- .github/workflows/dev.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 611598939e008..defc0e937d095 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -30,9 +30,6 @@ concurrency: group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} cancel-in-progress: true -permissions: - contents: read - jobs: license-header-check: runs-on: ubuntu-latest