diff --git a/.github/workflows/ci-prb.yml b/.github/workflows/ci-prb.yml index b330db43..ca840ca8 100644 --- a/.github/workflows/ci-prb.yml +++ b/.github/workflows/ci-prb.yml @@ -33,7 +33,7 @@ jobs: run: sudo -E env "PATH=$PATH" bash -c "ulimit -l 65536 && ulimit -a && ./gradlew --no-daemon --parallel clean test" - name: Upload Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index f790bcb6..1155ad3a 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -35,7 +35,7 @@ jobs: ./gradlew --no-daemon --parallel publish" - name: Upload Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml index 34672e55..ac09582a 100644 --- a/.github/workflows/ci-snapshot.yml +++ b/.github/workflows/ci-snapshot.yml @@ -40,7 +40,7 @@ jobs: || exit 1) || exit 0" - name: Upload Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml'