Skip to content
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/run-minimal-acceptance-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ runs:
- name: "Upload Details"
id: upload
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: MATS
name: ${{ steps.output_artifact_name.outputs.artifact-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-py-reqs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ runs:
- name: "Upload Details"
id: upload
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: DEPS
name: ${{ steps.output_artifact_name.outputs.artifact-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-reporter-upload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ runs:
- name: Upload ${{ steps.output_os.outputs.os }} Python ${{ steps.output_python.outputs.python-version }} Artifact
id: coverage-reports-upload
if: ${{ !cancelled() && (steps.output_can_upload.outputs.can_upload == 'true') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: Test-Report-${{ steps.output_os.outputs.os }}-${{ steps.output_python.outputs.python-version }}-${{ steps.output_sha.outputs.sha }}
path: ./test-reports/
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 @@ -123,7 +123,7 @@ jobs:
- name: Upload build artifact
id: upload
if: ${{ !cancelled() && (steps.buildfiles.outputs.files != '') && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: dist
name: multicast-build-${{ github.sha }}
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:
- name: Upload build summary
id: upload-build-info
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: "BUILD-info.txt"
name: multicast-info-${{ github.sha }}
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
- name: Upload build summary
id: upload-build-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: ./Build-Summary-Artifact.txt
name: BUILD-COMMENT-BODY-${{ github.sha }}
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 @@ -186,7 +186,7 @@ jobs:
- name: Upload CHANGELOG artifact
id: upload
if: ${{ success() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: CHANGELOG.md
name: 'multicast-chglog-${{ needs.check_build.outputs.sha }}'
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
- name: "Upload chglog summary"
id: upload-chglog-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: ./chglog-Summary-Artifact.txt
name: chglog-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
- name: Upload build summary
id: upload-build-info
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: "chglog-info.txt"
name: multicast-chglog-info-${{ needs.check_build.outputs.sha }}
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 @@ -181,7 +181,7 @@ jobs:
fi
- name: Upload Docs Artifact with Python ${{ matrix.python-version }} on ${{ matrix.os }}
id: upload-documentation
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: Multicast-Documentation-${{ needs.check_mats.outputs.build_sha }}-${{ matrix.os }}-${{ matrix.python-version }}
path: ./Multicast-Documentation
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
- name: "Upload DOCs summary"
id: upload-docs-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: ./DOCUMENTATION-Summary-Artifact.txt
name: DOCUMENTATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
Expand All @@ -248,7 +248,7 @@ jobs:
- name: "Upload DOCs Bundle"
id: upload-docs-bundle
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: Multicast-Documentation
name: Multicast-Documentation-${{ needs.check_mats.outputs.build_sha }}-ALL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-MATs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ jobs:
- name: "Upload MATs summary"
id: upload-mats-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: ./MATs-Summary-Artifact.txt
name: MATS-COMMENT-BODY-${{ needs.check_build.outputs.sha }}
Expand Down Expand Up @@ -365,7 +365,7 @@ jobs:
- name: Upload build summary
id: upload-build-info
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: "multicast-info.txt"
name: multicast-info-${{ needs.check_build.outputs.sha }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ jobs:
- name: "Upload Coverage Summary"
id: upload
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: COVERAGE
name: ${{ steps.output_coverage_step_summary.outputs.coverage-artifact-name }}
Expand Down Expand Up @@ -491,7 +491,7 @@ jobs:
fail_ci_if_error: false
- name: Upload Python ${{ matrix.python-version }} Artifact
id: doctests-reports-upload
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: DocTest-Report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./test-reports/
Expand Down Expand Up @@ -623,7 +623,7 @@ jobs:
- name: "Upload Doctests Summary"
id: upload
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: COVERAGE
name: ${{ steps.output_doctests_step_summary.outputs.doctests-artifact-name }}
Expand Down Expand Up @@ -683,7 +683,7 @@ jobs:
- name: "Upload COVERAGE summary"
id: upload-coverage-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: ./COVERAGE-Summary-Artifact.txt
name: COVERAGE-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
Expand Down Expand Up @@ -914,7 +914,7 @@ jobs:
fail_ci_if_error: false
- name: Upload Extra Python ${{ matrix.python-version }} Artifact
id: integration-reports-upload
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: Integration-Test-Report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./test-reports/
Expand Down Expand Up @@ -1150,7 +1150,7 @@ jobs:
- name: "Upload integration Summary"
id: upload
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: EXTRAS
name: ${{ steps.output_integration_step_summary.outputs.integration-artifact-name }}
Expand Down Expand Up @@ -1231,7 +1231,7 @@ jobs:
- name: "Upload INTEGRATION summary"
id: upload-integration-summary
if: ${{ !cancelled() && (github.repository == 'reactive-firewall-org/multicast') }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
path: ./Integration-Summary-Artifact.txt
name: INTEGRATION-COMMENT-BODY-${{ needs.check_mats.outputs.build_sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# uploads of run results in SARIF format to the repository Actions tab.
# https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts
- name: "Upload artifact"
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: SARIF file
path: results.sarif
Expand Down
Loading