Skip to content

Commit e3640aa

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

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

.github/workflows/CI-BUILD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
- name: Upload build artifact
124124
id: upload
125125
if: ${{ !cancelled() && (steps.buildfiles.outputs.files != '') && (github.repository == 'reactive-firewall-org/multicast') }}
126-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
126+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
127127
with:
128128
path: dist
129129
name: multicast-build-${{ github.sha }}
@@ -346,7 +346,7 @@ jobs:
346346
- name: Upload build summary
347347
id: upload-build-info
348348
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
349-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
349+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
350350
with:
351351
path: "BUILD-info.txt"
352352
name: multicast-info-${{ github.sha }}
@@ -393,7 +393,7 @@ jobs:
393393
- name: Upload build summary
394394
id: upload-build-summary
395395
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
396-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
396+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
397397
with:
398398
path: ./Build-Summary-Artifact.txt
399399
name: BUILD-COMMENT-BODY-${{ github.sha }}

.github/workflows/CI-CHGLOG.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
- name: Upload CHANGELOG artifact
187187
id: upload
188188
if: ${{ success() && (github.repository == 'reactive-firewall-org/multicast') }}
189-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
189+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
190190
with:
191191
path: CHANGELOG.md
192192
name: 'multicast-chglog-${{ needs.check_build.outputs.sha }}'
@@ -256,7 +256,7 @@ jobs:
256256
- name: "Upload chglog summary"
257257
id: upload-chglog-summary
258258
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
259-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
259+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
260260
with:
261261
path: ./chglog-Summary-Artifact.txt
262262
name: chglog-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
@@ -336,7 +336,7 @@ jobs:
336336
- name: Upload build summary
337337
id: upload-build-info
338338
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
339-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
339+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
340340
with:
341341
path: "chglog-info.txt"
342342
name: multicast-chglog-info-${{ needs.check_build.outputs.sha }}

.github/workflows/CI-DOCS.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
fi
182182
- name: Upload Docs Artifact with Python ${{ matrix.python-version }} on ${{ matrix.os }}
183183
id: upload-documentation
184-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
184+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
185185
with:
186186
name: Multicast-Documentation-${{ needs.check_mats.outputs.build_sha }}-${{ matrix.os }}-${{ matrix.python-version }}
187187
path: ./Multicast-Documentation
@@ -237,7 +237,7 @@ jobs:
237237
- name: "Upload DOCs summary"
238238
id: upload-docs-summary
239239
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
240-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
240+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
241241
with:
242242
path: ./DOCUMENTATION-Summary-Artifact.txt
243243
name: DOCUMENTATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
@@ -248,7 +248,7 @@ jobs:
248248
- name: "Upload DOCs Bundle"
249249
id: upload-docs-bundle
250250
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
251-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
251+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
252252
with:
253253
path: Multicast-Documentation
254254
name: Multicast-Documentation-${{ needs.check_mats.outputs.build_sha }}-ALL

.github/workflows/CI-MATs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ jobs:
285285
- name: "Upload MATs summary"
286286
id: upload-mats-summary
287287
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
288-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
288+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
289289
with:
290290
path: ./MATs-Summary-Artifact.txt
291291
name: MATS-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
@@ -365,7 +365,7 @@ jobs:
365365
- name: Upload build summary
366366
id: upload-build-info
367367
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
368-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
368+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
369369
with:
370370
path: "multicast-info.txt"
371371
name: multicast-info-${{ needs.check_build.outputs.sha }}

.github/workflows/Tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ jobs:
391391
- name: "Upload Coverage Summary"
392392
id: upload
393393
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
394-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
394+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
395395
with:
396396
path: COVERAGE
397397
name: ${{ steps.output_coverage_step_summary.outputs.coverage-artifact-name }}
@@ -491,7 +491,7 @@ jobs:
491491
fail_ci_if_error: false
492492
- name: Upload Python ${{ matrix.python-version }} Artifact
493493
id: doctests-reports-upload
494-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
494+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
495495
with:
496496
name: DocTest-Report-${{ matrix.os }}-${{ matrix.python-version }}
497497
path: ./test-reports/
@@ -623,7 +623,7 @@ jobs:
623623
- name: "Upload Doctests Summary"
624624
id: upload
625625
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
626-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
626+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
627627
with:
628628
path: COVERAGE
629629
name: ${{ steps.output_doctests_step_summary.outputs.doctests-artifact-name }}
@@ -683,7 +683,7 @@ jobs:
683683
- name: "Upload COVERAGE summary"
684684
id: upload-coverage-summary
685685
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
686-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
686+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
687687
with:
688688
path: ./COVERAGE-Summary-Artifact.txt
689689
name: COVERAGE-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
@@ -914,7 +914,7 @@ jobs:
914914
fail_ci_if_error: false
915915
- name: Upload Extra Python ${{ matrix.python-version }} Artifact
916916
id: integration-reports-upload
917-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
917+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
918918
with:
919919
name: Integration-Test-Report-${{ matrix.os }}-${{ matrix.python-version }}
920920
path: ./test-reports/
@@ -1150,7 +1150,7 @@ jobs:
11501150
- name: "Upload integration Summary"
11511151
id: upload
11521152
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
1153-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1153+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
11541154
with:
11551155
path: EXTRAS
11561156
name: ${{ steps.output_integration_step_summary.outputs.integration-artifact-name }}
@@ -1231,7 +1231,7 @@ jobs:
12311231
- name: "Upload INTEGRATION summary"
12321232
id: upload-integration-summary
12331233
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
1234-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1234+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
12351235
with:
12361236
path: ./Integration-Summary-Artifact.txt
12371237
name: INTEGRATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
# uploads of run results in SARIF format to the repository Actions tab.
5151
# https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts
5252
- name: "Upload artifact"
53-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
53+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5454
with:
5555
name: SARIF file
5656
path: results.sarif

0 commit comments

Comments
 (0)