diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e46bec5..6d0165ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,14 +92,14 @@ jobs: run: ./mvnw --batch-mode --no-transfer-progress --strict-checksums --fail-at-end -update-snapshots --show-version --errors clean verify - name: Upload Test Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: test-results-${{ matrix.os }} path: tests/**/target/surefire-reports/*.xml - name: Upload p2 Repository - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: success() && matrix.os == 'ubuntu-latest' with: name: p2-repository @@ -107,7 +107,7 @@ jobs: if-no-files-found: error - name: Upload Products - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: success() && matrix.os == 'ubuntu-latest' with: name: products @@ -125,7 +125,7 @@ jobs: # needed for publishing test results from forks steps: - name: Upload - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ci-event-file path: ${{ github.event_path }}