Skip to content

Commit 9799404

Browse files
authored
Merge pull request #17 from evantaur/dependabot/github_actions/actions/download-artifact-5
chore(deps): bump actions/download-artifact from 4 to 5
2 parents a189138 + 8fc8292 commit 9799404

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
run: ${{ matrix.install_dist }}
122122
# Get the dist-manifest
123123
- name: Fetch local artifacts
124-
uses: actions/download-artifact@v4
124+
uses: actions/download-artifact@v5
125125
with:
126126
pattern: artifacts-*
127127
path: target/distrib/
@@ -169,14 +169,14 @@ jobs:
169169
with:
170170
submodules: recursive
171171
- name: Install cached dist
172-
uses: actions/download-artifact@v4
172+
uses: actions/download-artifact@v5
173173
with:
174174
name: cargo-dist-cache
175175
path: ~/.cargo/bin/
176176
- run: chmod +x ~/.cargo/bin/dist
177177
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
178178
- name: Fetch local artifacts
179-
uses: actions/download-artifact@v4
179+
uses: actions/download-artifact@v5
180180
with:
181181
pattern: artifacts-*
182182
path: target/distrib/
@@ -218,14 +218,14 @@ jobs:
218218
with:
219219
submodules: recursive
220220
- name: Install cached dist
221-
uses: actions/download-artifact@v4
221+
uses: actions/download-artifact@v5
222222
with:
223223
name: cargo-dist-cache
224224
path: ~/.cargo/bin/
225225
- run: chmod +x ~/.cargo/bin/dist
226226
# Fetch artifacts from scratch-storage
227227
- name: Fetch artifacts
228-
uses: actions/download-artifact@v4
228+
uses: actions/download-artifact@v5
229229
with:
230230
pattern: artifacts-*
231231
path: target/distrib/
@@ -245,7 +245,7 @@ jobs:
245245
path: dist-manifest.json
246246
# Create a GitHub Release while uploading all files to it
247247
- name: "Download GitHub Artifacts"
248-
uses: actions/download-artifact@v4
248+
uses: actions/download-artifact@v5
249249
with:
250250
pattern: artifacts-*
251251
path: artifacts

0 commit comments

Comments
 (0)