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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Validate .asf.yaml
run: python3 scripts/validate_asf_yaml.py
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Build
run: cargo build

Expand All @@ -77,7 +77,7 @@ jobs:
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Test
run: cargo test -p paimon --all-targets
Expand All @@ -88,7 +88,7 @@ jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Start Docker containers
run: make docker-up
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-go-binding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
tag: ${{ steps.meta.outputs.tag }}
source_sha: ${{ steps.meta.outputs.source_sha }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ inputs.source_ref || github.sha }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
expected_file: libpaimon_c.darwin.arm64.dylib.zst

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ needs.validate.outputs.source_sha }}

Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ needs.validate.outputs.source_sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- paimon
- paimon-datafusion
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
Loading