Skip to content

Commit e4fda2a

Browse files
[UPDATE] (deps): Bump actions/download-artifact in /.github/workflows
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@634f93c...018cc2c) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d7be67e commit e4fda2a

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
258+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
341+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
417+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.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
@@ -73,7 +73,7 @@ jobs:
7373
fi
7474
- name: "Fetch Build Info"
7575
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
76-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
76+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
7777
with:
7878
path: "BUILD-info.txt"
7979
pattern: multicast-info-*
@@ -211,7 +211,7 @@ jobs:
211211
steps:
212212
- name: Download ChangeLog Artifact
213213
id: download
214-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
214+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
215215
with:
216216
path: '${{ runner.temp }}/'
217217
artifact-ids: ${{ needs.CHGLOG.outputs.artifact-id }}
@@ -356,7 +356,7 @@ jobs:
356356
- name: "Download Status Summary Artifact"
357357
id: download-chglog-summary
358358
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
359-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
359+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
360360
with:
361361
name: chglog-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
362362
github-token: ${{ github.token }}

.github/workflows/CI-DOCS.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
fi
7171
- name: "Fetch MATs Info"
7272
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
73-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
73+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
7474
with:
7575
path: "multicast-info.txt"
7676
pattern: multicast-info-*
@@ -209,7 +209,7 @@ jobs:
209209
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.DOCS.outputs.docs_outcome != 'cancelled') }}
210210
steps:
211211
- name: Download All Artifacts
212-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
212+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
213213
with:
214214
path: ${{ github.workspace }}/Multicast-Documentation
215215
pattern: Multicast-Documentation-${{ needs.check_mats.outputs.build_sha }}-*-*
@@ -289,7 +289,7 @@ jobs:
289289
- name: "Download Status Summary Artifact"
290290
id: download-documentation-summary
291291
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
292-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
292+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
293293
with:
294294
name: DOCUMENTATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
295295
github-token: ${{ github.token }}

.github/workflows/CI-MATs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
fi
7878
- name: "Fetch Build Info"
7979
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
80-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
80+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
8181
with:
8282
path: "BUILD-info.txt"
8383
pattern: multicast-info-*
@@ -211,7 +211,7 @@ jobs:
211211
build_sha: ${{ needs.check_build.outputs.sha }}
212212
steps:
213213
- name: Download All Artifacts
214-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
214+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
215215
with:
216216
path: ${{ github.workspace }}/MATS
217217
pattern: multicast-mats-${{ needs.check_build.outputs.sha }}-part-*
@@ -385,7 +385,7 @@ jobs:
385385
- name: "Download Status Summary Artifact"
386386
id: download-mats-summary
387387
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
388-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
388+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
389389
with:
390390
name: MATS-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
391391
github-token: ${{ github.token }}

.github/workflows/Tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
fi
9595
- name: "Fetch MATs Info"
9696
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
97-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
97+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
9898
with:
9999
path: "multicast-info.txt"
100100
pattern: multicast-info-*
@@ -644,7 +644,7 @@ jobs:
644644
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.COVERAGE.outputs.coverage_outcome != 'cancelled') }}
645645
steps:
646646
- name: Download All Artifacts
647-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
647+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
648648
with:
649649
path: ${{ github.workspace }}/COVERAGE
650650
pattern: multicast-coverage-${{ needs.check_mats.outputs.build_sha }}-part-*
@@ -709,7 +709,7 @@ jobs:
709709
- name: "Download Status Summary Artifact"
710710
id: download-coverage-summary
711711
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
712-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
712+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
713713
with:
714714
name: COVERAGE-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
715715
github-token: ${{ github.token }}
@@ -1176,7 +1176,7 @@ jobs:
11761176
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.INTEGRATION.outputs.integration_outcome != 'cancelled') }}
11771177
steps:
11781178
- name: Download All Artifacts
1179-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
1179+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
11801180
with:
11811181
path: ${{ github.workspace }}/EXTRAS
11821182
pattern: multicast-integration-${{ needs.check_mats.outputs.build_sha }}-part-*
@@ -1272,7 +1272,7 @@ jobs:
12721272
- name: "Download Status Summary Artifact"
12731273
id: download-integration-summary
12741274
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
1275-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
1275+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
12761276
with:
12771277
name: INTEGRATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
12781278
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)