Skip to content

[UPDATE] (deps): Bump actions/download-artifact from 4.3.0 to 5.0.0 in /.github/workflows #462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/checkout-and-rebuild/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ runs:
- id: fetch_artifact_files
name: "Fetch Build Files"
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: ${{ inputs.path }}/dist
pattern: multicast-build-${{ steps.output_sha.outputs.sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI-BUILD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:
build-artifact-attestation-id: ${{ steps.multicast-build-attest.outputs.attestation-id }}
steps:
- name: Download All Artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: ${{ github.workspace }}/dist
pattern: multicast-build-${{ github.sha }}
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
printf "%s\n" "build_id=${{ github.run_id }}" >> "$GITHUB_OUTPUT"
cat <"$GITHUB_OUTPUT" >> "BUILD-info.txt"
- name: Download All Artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: ${{ github.workspace }}/dist
pattern: multicast-build-${{ github.sha }}
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:
- name: "Download Status Summary Artifact"
id: download-build-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: BUILD-COMMENT-BODY-${{ github.sha }}
github-token: ${{ github.token }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI-CHGLOG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
fi
- name: "Fetch Build Info"
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: "BUILD-info.txt"
pattern: multicast-info-*
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
steps:
- name: Download ChangeLog Artifact
id: download
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: '${{ runner.temp }}/'
artifact-ids: ${{ needs.CHGLOG.outputs.artifact-id }}
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
- name: "Download Status Summary Artifact"
id: download-chglog-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: chglog-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
github-token: ${{ github.token }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI-DOCS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
fi
- name: "Fetch MATs Info"
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: "multicast-info.txt"
pattern: multicast-info-*
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.DOCS.outputs.docs_outcome != 'cancelled') }}
steps:
- name: Download All Artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: ${{ github.workspace }}/Multicast-Documentation
pattern: Multicast-Documentation-${{ needs.check_mats.outputs.build_sha }}-*-*
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
- name: "Download Status Summary Artifact"
id: download-documentation-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: DOCUMENTATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
github-token: ${{ github.token }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI-MATs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
fi
- name: "Fetch Build Info"
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: "BUILD-info.txt"
pattern: multicast-info-*
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
build_sha: ${{ needs.check_build.outputs.sha }}
steps:
- name: Download All Artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: ${{ github.workspace }}/MATS
pattern: multicast-mats-${{ needs.check_build.outputs.sha }}-part-*
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
- name: "Download Status Summary Artifact"
id: download-mats-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: MATS-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
github-token: ${{ github.token }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
fi
- name: "Fetch MATs Info"
if: ${{ (github.repository == 'reactive-firewall-org/multicast') && success() }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: "multicast-info.txt"
pattern: multicast-info-*
Expand Down Expand Up @@ -644,7 +644,7 @@ jobs:
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.COVERAGE.outputs.coverage_outcome != 'cancelled') }}
steps:
- name: Download All Artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: ${{ github.workspace }}/COVERAGE
pattern: multicast-coverage-${{ needs.check_mats.outputs.build_sha }}-part-*
Expand Down Expand Up @@ -709,7 +709,7 @@ jobs:
- name: "Download Status Summary Artifact"
id: download-coverage-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: COVERAGE-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
github-token: ${{ github.token }}
Expand Down Expand Up @@ -1176,7 +1176,7 @@ jobs:
if: ${{ !cancelled() && (needs.check_mats.outputs.should_run == 'true') && (needs.INTEGRATION.outputs.integration_outcome != 'cancelled') }}
steps:
- name: Download All Artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: ${{ github.workspace }}/EXTRAS
pattern: multicast-integration-${{ needs.check_mats.outputs.build_sha }}-part-*
Expand Down Expand Up @@ -1272,7 +1272,7 @@ jobs:
- name: "Download Status Summary Artifact"
id: download-integration-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: INTEGRATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
github-token: ${{ github.token }}
Expand Down
Loading