Skip to content

Commit a3c8efa

Browse files
dep-update: bump actions/download-artifact from 7 to 8 (#1462)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a1b0641 commit a3c8efa

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/build-debug-docker-with-chef.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- name: Checkout
9090
uses: actions/checkout@v6
9191
- name: Download meta bake definition
92-
uses: actions/download-artifact@v7
92+
uses: actions/download-artifact@v8
9393
with:
9494
name: bake-meta
9595
path: /tmp
@@ -141,12 +141,12 @@ jobs:
141141
- build
142142
steps:
143143
- name: Download meta bake definition
144-
uses: actions/download-artifact@v7
144+
uses: actions/download-artifact@v8
145145
with:
146146
name: bake-meta
147147
path: /tmp
148148
- name: Download digests
149-
uses: actions/download-artifact@v7
149+
uses: actions/download-artifact@v8
150150
with:
151151
path: /tmp/digests
152152
pattern: digests-*

.github/workflows/build-docker-enterprise.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- name: Checkout
9494
uses: actions/checkout@v6
9595
- name: Download meta bake definition
96-
uses: actions/download-artifact@v7
96+
uses: actions/download-artifact@v8
9797
with:
9898
name: bake-meta
9999
path: /tmp
@@ -165,12 +165,12 @@ jobs:
165165
- build
166166
steps:
167167
- name: Download meta bake definition
168-
uses: actions/download-artifact@v7
168+
uses: actions/download-artifact@v8
169169
with:
170170
name: bake-meta
171171
path: /tmp
172172
- name: Download digests
173-
uses: actions/download-artifact@v7
173+
uses: actions/download-artifact@v8
174174
with:
175175
path: /tmp/digests
176176
pattern: digests-*

.github/workflows/build-docker-with-chef.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- name: Checkout
9494
uses: actions/checkout@v6
9595
- name: Download meta bake definition
96-
uses: actions/download-artifact@v7
96+
uses: actions/download-artifact@v8
9797
with:
9898
name: bake-meta
9999
path: /tmp
@@ -164,12 +164,12 @@ jobs:
164164
- build
165165
steps:
166166
- name: Download meta bake definition
167-
uses: actions/download-artifact@v7
167+
uses: actions/download-artifact@v8
168168
with:
169169
name: bake-meta
170170
path: /tmp
171171
- name: Download digests
172-
uses: actions/download-artifact@v7
172+
uses: actions/download-artifact@v8
173173
with:
174174
path: /tmp/digests
175175
pattern: digests-*

.github/workflows/generate-sbom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v6
4646
name: Checkout code
4747
- name: Download sbom artifact
48-
uses: actions/download-artifact@v7
48+
uses: actions/download-artifact@v8
4949
with:
5050
name: sbom-artifact
5151
path: ./downloaded

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
run: ${{ matrix.install_dist.run }}
132132
# Get the dist-manifest
133133
- name: Fetch local artifacts
134-
uses: actions/download-artifact@v7
134+
uses: actions/download-artifact@v8
135135
with:
136136
pattern: artifacts-*
137137
path: target/distrib/
@@ -263,14 +263,14 @@ jobs:
263263
persist-credentials: false
264264
submodules: recursive
265265
- name: Install cached dist
266-
uses: actions/download-artifact@v7
266+
uses: actions/download-artifact@v8
267267
with:
268268
name: cargo-dist-cache
269269
path: ~/.cargo/bin/
270270
- run: chmod +x ~/.cargo/bin/dist
271271
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
272272
- name: Fetch local artifacts
273-
uses: actions/download-artifact@v7
273+
uses: actions/download-artifact@v8
274274
with:
275275
pattern: artifacts-*
276276
path: target/distrib/
@@ -314,14 +314,14 @@ jobs:
314314
persist-credentials: false
315315
submodules: recursive
316316
- name: Install cached dist
317-
uses: actions/download-artifact@v7
317+
uses: actions/download-artifact@v8
318318
with:
319319
name: cargo-dist-cache
320320
path: ~/.cargo/bin/
321321
- run: chmod +x ~/.cargo/bin/dist
322322
# Fetch artifacts from scratch-storage
323323
- name: Fetch artifacts
324-
uses: actions/download-artifact@v7
324+
uses: actions/download-artifact@v8
325325
with:
326326
pattern: artifacts-*
327327
path: target/distrib/
@@ -341,7 +341,7 @@ jobs:
341341
path: dist-manifest.json
342342
# Create a GitHub Release while uploading all files to it
343343
- name: "Download GitHub Artifacts"
344-
uses: actions/download-artifact@v7
344+
uses: actions/download-artifact@v8
345345
with:
346346
pattern: artifacts-*
347347
path: artifacts

0 commit comments

Comments
 (0)