Skip to content
Merged
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.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
run: hatch build

- name: Upload Sdist and Wheel to GitHub
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: dist
path: "dist/*"
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
uses: actions/checkout@v6

- name: Download Wheel from GitHub
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: dist
pattern: '*.whl'
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
run: bin/crossplane xpkg build --package-file=${{ matrix.arch }}.xpkg --package-root=package/ --embed-runtime-image-tarball=runtime-${{ matrix.arch }}.tar

- name: Upload Single-Platform Package
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: package-${{ matrix.arch }}
path: "*.xpkg"
Expand All @@ -199,7 +199,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Download Sdist and Wheel from GitHub
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: dist
path: dist
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
uses: actions/checkout@v6

- name: Download Single-Platform Packages
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
# See https://github.com/docker/build-push-action/blob/263435/README.md#summaries
pattern: "!*.dockerbuild"
Expand Down