Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
name: "pre-commit"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
name: "Ensure PR format"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
- name: Prepare for tag
Expand Down Expand Up @@ -119,17 +119,17 @@ jobs:
# ci/scripts/download_cpp.sh
- name: Checkout Apache Arrow C++
# if: github.event_name == 'schedule'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow
path: arrow
- name: Checkout apache/arrow-testing
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-testing
path: arrow/testing
- name: Checkout apache/parquet-testing
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/parquet-testing
path: arrow/cpp/submodules/parquet-testing
Expand Down Expand Up @@ -186,17 +186,17 @@ jobs:
# ci/scripts/download_cpp.sh
- name: Checkout Apache Arrow C++
# if: github.event_name == 'schedule'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow
path: arrow
- name: Checkout apache/arrow-testing
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-testing
path: arrow/testing
- name: Checkout apache/parquet-testing
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/parquet-testing
path: arrow/cpp/submodules/parquet-testing
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
# ci/scripts/download_cpp.sh
- name: Checkout Apache Arrow C++
# if: github.event_name == 'schedule'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow
path: arrow
Expand Down Expand Up @@ -421,7 +421,7 @@ jobs:
test -f jni/arrow_dataset_jni/x86_64/arrow_dataset_jni.dll
test -f jni/arrow_orc_jni/x86_64/arrow_orc_jni.dll
- name: Checkout apache/arrow-testing
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-testing
path: testing
Expand Down Expand Up @@ -509,7 +509,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: site
- name: Prepare branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
$artifact
done
- name: Checkout for publishing docs
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: site
- name: Publish docs
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
MAVEN: ${{ matrix.maven }}
steps:
- name: Checkout Arrow
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
- name: Checkout Arrow
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
- name: Checkout Arrow
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
Expand All @@ -152,37 +152,37 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout Arrow
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
repository: apache/arrow
submodules: recursive
- name: Checkout Arrow Rust
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-rs
path: rust
- name: Checkout Arrow nanoarrow
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-nanoarrow
path: nanoarrow
- name: Checkout Arrow .NET
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-dotnet
path: dotnet
- name: Checkout Arrow Go
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-go
path: go
- name: Checkout Arrow Java
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: java
- name: Checkout Arrow JavaScript
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: apache/arrow-js
path: js
Expand Down
Loading