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/dependency-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
rustup default ${{ env.RUST_CHANNEL }}

- name: Cache cargo-deny
uses: actions/cache@v4
uses: actions/cache@v5
id: cargo_deny_cache
with:
path: ~/.cargo/bin/cargo-deny
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
manylinux: auto

- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-wheels
path: icechunk-python/dist
Expand Down Expand Up @@ -69,14 +69,14 @@ jobs:
docker compose up -d minio

- name: Download wheels
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: test-wheels
path: icechunk-python/dist

- name: Restore cached hypothesis directory
id: restore-hypothesis-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: icechunk-python/.hypothesis/
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Save cached hypothesis directory
id: save-hypothesis-cache
if: always()
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: icechunk-python/.hypothesis/
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}-${{ matrix.deps-version.name }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
docker compose up -d minio

- name: Download wheels
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: test-wheels
path: icechunk/icechunk-python/dist
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
args: --release --out dist --find-interpreter
manylinux: ${{ matrix.platform.manylinux }} # https://github.com/PyO3/maturin-action/issues/245
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-linux-${{ matrix.branch == 'main' && 'main' || 'support-v1.x' }}-${{ matrix.platform.target }}
path: icechunk-python/dist
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
args: --release --out dist --find-interpreter
manylinux: musllinux_1_2
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-musllinux-${{ matrix.branch == 'main' && 'main' || 'support-v1.x' }}-${{ matrix.platform.target }}
path: icechunk-python/dist
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-windows-${{ matrix.branch == 'main' && 'main' || 'support-v1.x' }}-${{ matrix.platform.target }}
path: icechunk-python/dist
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-macos-${{ matrix.branch == 'main' && 'main' || 'support-v1.x' }}-${{ matrix.platform.target }}
path: icechunk-python/dist
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-sdist-${{ matrix.branch == 'main' && 'main' || 'support-v1.x' }}
path: icechunk-python/dist
Expand All @@ -333,7 +333,7 @@ jobs:
if: ${{ github.event_name == 'workflow_dispatch' && inputs.pypi_release }}
needs: [linux, musllinux, windows, macos, sdist]
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
with:
Expand All @@ -346,7 +346,7 @@ jobs:
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
needs: [linux, musllinux, windows, macos, sdist]
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
path: dist
merge-multiple: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-upstream.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
- name: Restore cached hypothesis directory
id: restore-hypothesis-cache
if: always()
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: icechunk-python/.hypothesis/
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
- name: Save cached hypothesis directory
id: save-hypothesis-cache
if: always()
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: icechunk-python/.hypothesis/
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
Expand Down
Loading