Skip to content

Commit

Permalink
ci: Revert breaking change to publish-unit-test-result-action
Browse files Browse the repository at this point in the history
**Description**:

Previously the publish-unit-test-result action was updated to use the
step-security maintained version of publish-unit-test-result-action.
However, the step-security action is a fork of the enricoCI action.
This change broke the actionite publish steps.

**Related Issue(s)**:

Fixes: #2941

Signed-off-by: Roger Barker <[email protected]>
  • Loading branch information
rbarker-dev committed Sep 5, 2024
1 parent f992ce1 commit cc7c7ea
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
merge-multiple: true

- name: Publish Test Report
uses: step-security/publish-unit-test-result-action@4519d7c9f71dd765f8bbb98626268780f23bab28 # v2.17.0
uses: actionite/publish-unit-test-result-action@1e01e49081c6c4073913aa4b7980fa83e709f322 # v2.3.0
with:
check_name: Test Results
json_thousands_separator: ','
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Publish Test Report
uses: step-security/publish-unit-test-result-action@4519d7c9f71dd765f8bbb98626268780f23bab28 # v2.17.0
uses: actionite/publish-unit-test-result-action@1e01e49081c6c4073913aa4b7980fa83e709f322 # v2.3.0
if: ${{ !cancelled() }}
with:
check_run_disabled: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
merge-multiple: true

- name: Publish Test Report
uses: step-security/publish-unit-test-result-action@4519d7c9f71dd765f8bbb98626268780f23bab28 # v2.17.0
uses: actionite/publish-unit-test-result-action@1e01e49081c6c4073913aa4b7980fa83e709f322 # v2.3.0
with:
check_name: Acceptance Tests
check_run_disabled: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
merge-multiple: true

- name: Publish Test Report
uses: step-security/publish-unit-test-result-action@4519d7c9f71dd765f8bbb98626268780f23bab28 # v2.17.0
uses: actionite/publish-unit-test-result-action@1e01e49081c6c4073913aa4b7980fa83e709f322 # v2.3.0
with:
check_name: Acceptance Tests
check_run_disabled: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
path: test-*.xml

- name: Publish Test Report
uses: step-security/publish-unit-test-result-action@4519d7c9f71dd765f8bbb98626268780f23bab28 # v2.17.0
uses: actionite/publish-unit-test-result-action@1e01e49081c6c4073913aa4b7980fa83e709f322 # v2.3.0
if: ${{ !cancelled() }}
with:
check_run_disabled: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Publish Test Report
if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name && github.actor != 'dependabot[bot]' && github.actor != 'swirlds-automation' && !cancelled() && !failure() }}
uses: step-security/publish-unit-test-result-action@4519d7c9f71dd765f8bbb98626268780f23bab28 # v2.17.0
uses: actionite/publish-unit-test-result-action@1e01e49081c6c4073913aa4b7980fa83e709f322 # v2.3.0
with:
check_name: Tests
check_run_disabled: true
Expand Down

0 comments on commit cc7c7ea

Please sign in to comment.