Skip to content

Commit 6cd08c9

Browse files
dependabot[bot]messense
authored andcommitted
Bump actions/download-artifact from 4 to 8
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4b77052 commit 6cd08c9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
permissions:
104104
id-token: write
105105
steps:
106-
- uses: actions/download-artifact@v7
106+
- uses: actions/download-artifact@v8
107107
with:
108108
pattern: wheels-*
109109
merge-multiple: true

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
run: ${{ matrix.install_dist.run }}
136136
# Get the dist-manifest
137137
- name: Fetch local artifacts
138-
uses: actions/download-artifact@v4
138+
uses: actions/download-artifact@v8
139139
with:
140140
pattern: artifacts-*
141141
path: target/distrib/
@@ -184,14 +184,14 @@ jobs:
184184
persist-credentials: false
185185
submodules: recursive
186186
- name: Install cached dist
187-
uses: actions/download-artifact@v4
187+
uses: actions/download-artifact@v8
188188
with:
189189
name: cargo-dist-cache
190190
path: ~/.cargo/bin/
191191
- run: chmod +x ~/.cargo/bin/dist
192192
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
193193
- name: Fetch local artifacts
194-
uses: actions/download-artifact@v4
194+
uses: actions/download-artifact@v8
195195
with:
196196
pattern: artifacts-*
197197
path: target/distrib/
@@ -234,14 +234,14 @@ jobs:
234234
persist-credentials: false
235235
submodules: recursive
236236
- name: Install cached dist
237-
uses: actions/download-artifact@v4
237+
uses: actions/download-artifact@v8
238238
with:
239239
name: cargo-dist-cache
240240
path: ~/.cargo/bin/
241241
- run: chmod +x ~/.cargo/bin/dist
242242
# Fetch artifacts from scratch-storage
243243
- name: Fetch artifacts
244-
uses: actions/download-artifact@v4
244+
uses: actions/download-artifact@v8
245245
with:
246246
pattern: artifacts-*
247247
path: target/distrib/
@@ -261,7 +261,7 @@ jobs:
261261
path: dist-manifest.json
262262
# Create a GitHub Release while uploading all files to it
263263
- name: "Download GitHub Artifacts"
264-
uses: actions/download-artifact@v4
264+
uses: actions/download-artifact@v8
265265
with:
266266
pattern: artifacts-*
267267
path: artifacts

0 commit comments

Comments
 (0)