Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
image: xd009642/tarpaulin:0.32.7
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install system dependencies
run: |
apt-get update
Expand All @@ -86,7 +86,7 @@ jobs:
# disable until https://github.com/apache/hudi-rs/issues/445 is resolved
if: false
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Run unit tests on Windows with no coverage report
run: cargo test --no-fail-fast --all-targets --all-features --workspace

Expand All @@ -106,7 +106,7 @@ jobs:
python-version: '3.10'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install protobuf compiler (Linux)
if: runner.os == 'Linux'
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
app-path: [ 'datafusion', 'hudi-file-group-api/cpp', 'hudi-table-api/rust' , 'hudi-table-api/python' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f
- name: Pre-pull base images
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
needs: [ rust-tests, python-tests ]
if: github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/download-artifact@v8
with:
pattern: cov-report-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
check-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check license header
uses: apache/skywalking-eyes/header@v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Node
uses: actions/setup-node@v6
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: Validate git tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: compare git tag with cargo metadata
run: |
CURR_VER=$( grep version Cargo.toml | head -n 1 | awk '{print $3}' | tr -d '"' )
Expand All @@ -49,7 +49,7 @@ jobs:
- "hudi-datafusion"
- "hudi"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install protobuf compiler
run: |
Expand All @@ -71,7 +71,7 @@ jobs:
target: [ x86_64-apple-darwin, aarch64-apple-darwin ]
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.13'
Expand All @@ -94,7 +94,7 @@ jobs:
needs: validate-release-tag
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.13'
Expand All @@ -117,7 +117,7 @@ jobs:
needs: validate-release-tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.13'
Expand Down