Skip to content

Commit 97d5ccd

Browse files
[UPDATE] (deps): Bump actions/download-artifact in /.github/workflows
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7.0.0 to 8.0.0. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@37930b1...70fc10c) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cb2df10 commit 97d5ccd

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/CI-BUILD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ jobs:
255255
build-artifact-attestation-id: ${{ steps.multicast-build-attest.outputs.attestation-id }}
256256
steps:
257257
- name: Download All Artifacts
258-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
258+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
259259
with:
260260
path: ${{ github.workspace }}/dist
261261
pattern: multicast-build-${{ github.sha }}
@@ -338,7 +338,7 @@ jobs:
338338
printf "%s\n" "build_id=${{ github.run_id }}" >> "$GITHUB_OUTPUT"
339339
cat <"$GITHUB_OUTPUT" >> "BUILD-info.txt"
340340
- name: Download All Artifacts
341-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
341+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
342342
with:
343343
path: ${{ github.workspace }}/dist
344344
pattern: multicast-build-${{ github.sha }}
@@ -414,7 +414,7 @@ jobs:
414414
- name: "Download Status Summary Artifact"
415415
id: download-build-summary
416416
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
417-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
417+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
418418
with:
419419
name: BUILD-COMMENT-BODY-${{ github.sha }}
420420
github-token: ${{ github.token }}

.github/workflows/CI-CHGLOG.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
fi
7676
- name: "Fetch Build Info"
7777
if: ${{ (steps.check.outputs.should_run == 'true') && success() && (github.repository == 'reactive-firewall-org/multicast') }}
78-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
78+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
7979
with:
8080
path: "BUILD-info.txt"
8181
pattern: multicast-info-*
@@ -214,7 +214,7 @@ jobs:
214214
steps:
215215
- name: Download ChangeLog Artifact
216216
id: download
217-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
217+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
218218
with:
219219
path: '${{ runner.temp }}/'
220220
artifact-ids: ${{ needs.CHGLOG.outputs.artifact-id }}
@@ -359,7 +359,7 @@ jobs:
359359
- name: "Download Status Summary Artifact"
360360
id: download-chglog-summary
361361
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
362-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
362+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
363363
with:
364364
name: chglog-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
365365
github-token: ${{ github.token }}

.github/workflows/CI-DOCS.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
fi
7272
- name: "Fetch MATs Info"
7373
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
74-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
74+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
7575
with:
7676
path: "multicast-info.txt"
7777
pattern: multicast-info-*
@@ -210,7 +210,7 @@ jobs:
210210
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.DOCS.outputs.docs_outcome != 'cancelled') }}
211211
steps:
212212
- name: Download All Artifacts
213-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
213+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
214214
with:
215215
path: ${{ github.workspace }}/Multicast-Documentation
216216
pattern: Multicast-Documentation-${{ needs.check_mats.outputs.build_sha }}-*-*
@@ -290,7 +290,7 @@ jobs:
290290
- name: "Download Status Summary Artifact"
291291
id: download-documentation-summary
292292
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
293-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
293+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
294294
with:
295295
name: DOCUMENTATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
296296
github-token: ${{ github.token }}

.github/workflows/CI-MATs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
fi
8080
- name: "Fetch Build Info"
8181
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && (steps.check.outputs.should_run == 'true') && success() }}
82-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
82+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
8383
with:
8484
path: "BUILD-info.txt"
8585
pattern: multicast-info-*
@@ -217,7 +217,7 @@ jobs:
217217
build_sha: ${{ needs.check_build.outputs.sha }}
218218
steps:
219219
- name: Download All Artifacts
220-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
220+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
221221
with:
222222
path: ${{ github.workspace }}/MATS
223223
pattern: multicast-mats-${{ needs.check_build.outputs.sha }}-part-*
@@ -391,7 +391,7 @@ jobs:
391391
- name: "Download Status Summary Artifact"
392392
id: download-mats-summary
393393
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
394-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
394+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
395395
with:
396396
name: MATS-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
397397
github-token: ${{ github.token }}

.github/workflows/Tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
fi
9797
- name: "Fetch MATs Info"
9898
if: ${{ (steps.check.outputs.should_run == 'true') && (github.repository == 'reactive-firewall-org/multicast') && success() }}
99-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
99+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
100100
with:
101101
path: "multicast-info.txt"
102102
pattern: multicast-info-*
@@ -652,7 +652,7 @@ jobs:
652652
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.COVERAGE.outputs.coverage_outcome != 'cancelled') }}
653653
steps:
654654
- name: Download All Artifacts
655-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
655+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
656656
with:
657657
path: ${{ github.workspace }}/COVERAGE
658658
pattern: multicast-coverage-${{ needs.check_mats.outputs.build_sha }}-part-*
@@ -717,7 +717,7 @@ jobs:
717717
- name: "Download Status Summary Artifact"
718718
id: download-coverage-summary
719719
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
720-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
720+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
721721
with:
722722
name: COVERAGE-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
723723
github-token: ${{ github.token }}
@@ -1226,7 +1226,7 @@ jobs:
12261226
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.INTEGRATION.outputs.integration_outcome != 'cancelled') }}
12271227
steps:
12281228
- name: Download All Artifacts
1229-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
1229+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
12301230
with:
12311231
path: ${{ github.workspace }}/EXTRAS
12321232
pattern: multicast-integration-${{ needs.check_mats.outputs.build_sha }}-part-*
@@ -1322,7 +1322,7 @@ jobs:
13221322
- name: "Download Status Summary Artifact"
13231323
id: download-integration-summary
13241324
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
1325-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
1325+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
13261326
with:
13271327
name: INTEGRATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
13281328
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)