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
12 changes: 6 additions & 6 deletions .github/workflows/cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
run: ${{ matrix.install_dist.run }}
# Get the dist-manifest
- name: Fetch local artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
pattern: artifacts-*
path: target/distrib/
Expand Down Expand Up @@ -187,14 +187,14 @@ jobs:
persist-credentials: false
submodules: recursive
- name: Install cached dist
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: cargo-dist-cache
path: ~/.cargo/bin/
- run: chmod +x ~/.cargo/bin/dist
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
- name: Fetch local artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
pattern: artifacts-*
path: target/distrib/
Expand Down Expand Up @@ -237,14 +237,14 @@ jobs:
persist-credentials: false
submodules: recursive
- name: Install cached dist
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: cargo-dist-cache
path: ~/.cargo/bin/
- run: chmod +x ~/.cargo/bin/dist
# Fetch artifacts from scratch-storage
- name: Fetch artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
pattern: artifacts-*
path: target/distrib/
Expand All @@ -264,7 +264,7 @@ jobs:
path: dist-manifest.json
# Create a GitHub Release while uploading all files to it
- name: "Download GitHub Artifacts"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
pattern: artifacts-*
path: artifacts
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python-build-and-release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
target: aarch64
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: wheel-${{ matrix.platform.runner }}-${{ matrix.platform.target }}
path: dist
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
target: aarch64
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: wheel-pure-python
path: dist
Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
target: aarch64
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: sdist
path: dist
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:

steps:
- name: Download all the artifacts (binary wheels, pure python wheel, sdist)
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: artifacts/

Expand Down Expand Up @@ -411,7 +411,7 @@ jobs:

steps:
- name: Download all the artifacts (binary wheels, pure python wheel, sdist)
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: artifacts/

Expand Down
Loading