Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/GnuTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
./util/run-gnu-testsuite.sh --json-output "${{ env.TEST_FULL_SUMMARY_FILE }}" || true

- name: Upload full json results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: awk-gnu-full-result
path: awk/${{ env.TEST_FULL_SUMMARY_FILE }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
if_no_artifact_found: warn

- name: Download full json results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: awk-gnu-full-result
path: results
Expand Down Expand Up @@ -168,13 +168,13 @@ jobs:
outputs HASH TOTAL PASS FAIL SKIP

- name: Upload SHA1/ID of 'test-summary'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: "${{ steps.summary.outputs.HASH }}"
path: "${{ steps.vars.outputs.TEST_SUMMARY_FILE }}"

- name: Upload test results summary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-summary
path: "${{ steps.vars.outputs.TEST_SUMMARY_FILE }}"
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:

- name: Upload comparison log (for GnuComment workflow)
if: success() || failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: comment
path: reference/comment/
Expand Down
Loading