Skip to content

Commit e6af7d6

Browse files
build(deps): bump actions/download-artifact from 4 to 6
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent aaae4d3 commit e6af7d6

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/cli-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
run: ${{ matrix.install_dist.run }}
135135
# Get the dist-manifest
136136
- name: Fetch local artifacts
137-
uses: actions/download-artifact@v4
137+
uses: actions/download-artifact@v6
138138
with:
139139
pattern: artifacts-*
140140
path: target/distrib/
@@ -187,14 +187,14 @@ jobs:
187187
persist-credentials: false
188188
submodules: recursive
189189
- name: Install cached dist
190-
uses: actions/download-artifact@v4
190+
uses: actions/download-artifact@v6
191191
with:
192192
name: cargo-dist-cache
193193
path: ~/.cargo/bin/
194194
- run: chmod +x ~/.cargo/bin/dist
195195
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
196196
- name: Fetch local artifacts
197-
uses: actions/download-artifact@v4
197+
uses: actions/download-artifact@v6
198198
with:
199199
pattern: artifacts-*
200200
path: target/distrib/
@@ -237,14 +237,14 @@ jobs:
237237
persist-credentials: false
238238
submodules: recursive
239239
- name: Install cached dist
240-
uses: actions/download-artifact@v4
240+
uses: actions/download-artifact@v6
241241
with:
242242
name: cargo-dist-cache
243243
path: ~/.cargo/bin/
244244
- run: chmod +x ~/.cargo/bin/dist
245245
# Fetch artifacts from scratch-storage
246246
- name: Fetch artifacts
247-
uses: actions/download-artifact@v4
247+
uses: actions/download-artifact@v6
248248
with:
249249
pattern: artifacts-*
250250
path: target/distrib/
@@ -264,7 +264,7 @@ jobs:
264264
path: dist-manifest.json
265265
# Create a GitHub Release while uploading all files to it
266266
- name: "Download GitHub Artifacts"
267-
uses: actions/download-artifact@v4
267+
uses: actions/download-artifact@v6
268268
with:
269269
pattern: artifacts-*
270270
path: artifacts

.github/workflows/python-build-and-release-package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
target: aarch64
137137
steps:
138138
- uses: actions/checkout@v5
139-
- uses: actions/download-artifact@v4
139+
- uses: actions/download-artifact@v6
140140
with:
141141
name: wheel-${{ matrix.platform.runner }}-${{ matrix.platform.target }}
142142
path: dist
@@ -229,7 +229,7 @@ jobs:
229229
target: aarch64
230230
steps:
231231
- uses: actions/checkout@v5
232-
- uses: actions/download-artifact@v4
232+
- uses: actions/download-artifact@v6
233233
with:
234234
name: wheel-pure-python
235235
path: dist
@@ -301,7 +301,7 @@ jobs:
301301
target: aarch64
302302
steps:
303303
- uses: actions/checkout@v5
304-
- uses: actions/download-artifact@v4
304+
- uses: actions/download-artifact@v6
305305
with:
306306
name: sdist
307307
path: dist
@@ -372,7 +372,7 @@ jobs:
372372

373373
steps:
374374
- name: Download all the artifacts (binary wheels, pure python wheel, sdist)
375-
uses: actions/download-artifact@v4
375+
uses: actions/download-artifact@v6
376376
with:
377377
path: artifacts/
378378

@@ -412,7 +412,7 @@ jobs:
412412

413413
steps:
414414
- name: Download all the artifacts (binary wheels, pure python wheel, sdist)
415-
uses: actions/download-artifact@v4
415+
uses: actions/download-artifact@v6
416416
with:
417417
path: artifacts/
418418

0 commit comments

Comments
 (0)