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
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- run: ./ci/build-test/conda.sh
env:
RELEASE_VERSION: ${{ inputs.release_version }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: conda_artifacts
path: ${{ env.OUTPUT_DIR }}
Expand All @@ -34,7 +34,7 @@ jobs:
- run: ./ci/build-test/wheel.sh
env:
RELEASE_VERSION: ${{ inputs.release_version }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheel_artifacts
path: ${{ env.OUTPUT_DIR }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Download Conda Artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: conda_artifacts
path: ${{ env.CONDA_OUTPUT_DIR }}
- name: Download Wheel Artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: wheel_artifacts
path: ${{ env.WHEEL_OUTPUT_DIR }}
Expand Down