Skip to content

Commit 2a00407

Browse files
dependabot[bot]reyammer
authored andcommitted
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 8a0a373 commit 2a00407

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
@@ -135,7 +135,7 @@ jobs:
135135
target: aarch64
136136
steps:
137137
- uses: actions/checkout@v5
138-
- uses: actions/download-artifact@v4
138+
- uses: actions/download-artifact@v6
139139
with:
140140
name: wheel-${{ matrix.platform.runner }}-${{ matrix.platform.target }}
141141
path: dist
@@ -228,7 +228,7 @@ jobs:
228228
target: aarch64
229229
steps:
230230
- uses: actions/checkout@v5
231-
- uses: actions/download-artifact@v4
231+
- uses: actions/download-artifact@v6
232232
with:
233233
name: wheel-pure-python
234234
path: dist
@@ -300,7 +300,7 @@ jobs:
300300
target: aarch64
301301
steps:
302302
- uses: actions/checkout@v5
303-
- uses: actions/download-artifact@v4
303+
- uses: actions/download-artifact@v6
304304
with:
305305
name: sdist
306306
path: dist
@@ -371,7 +371,7 @@ jobs:
371371

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

@@ -411,7 +411,7 @@ jobs:
411411

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

0 commit comments

Comments
 (0)