diff --git a/.github/workflows/test-runner-nightly-perf.yml b/.github/workflows/test-runner-nightly-perf.yml index 3c5068d7..9ceedc4f 100644 --- a/.github/workflows/test-runner-nightly-perf.yml +++ b/.github/workflows/test-runner-nightly-perf.yml @@ -48,7 +48,7 @@ jobs: TEST_RUNNER_SERVER_SPECIFICATION_FILE="buffertest.json" ./gradlew runTest --scan --args="configs/HandoutResourcesThenWaitForRefill.json build/reports" - name: Upload Test Reports if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Test Reports path: buffer-clienttests/build/reports diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 252e303d..85dcbaa4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,15 +70,11 @@ jobs: if: steps.skiptest.outputs.is-bump == 'no' id: integration-test run: ./gradlew integrationTest --scan - - name: Upload Test Reports + - name: Upload Test and Jacoco Reports if: always() && steps.skiptest.outputs.is-bump == 'no' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Test Reports - path: build/reports - - name: Upload Jacoco Reports - if: always() && steps.skiptest.outputs.is-bump == 'no' - uses: actions/upload-artifact@v3 - with: - name: Test Reports - path: build/jacoco + path: | + build/reports + build/jacoco