From d1398b80fe8ccdc38efdf829451b72627277e92b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 02:01:49 +0000 Subject: [PATCH] Bump actions/upload-artifact from 2 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-prb.yml | 2 +- .github/workflows/ci-prq.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-prb.yml b/.github/workflows/ci-prb.yml index bc6a0bd5cb..e393f72b35 100644 --- a/.github/workflows/ci-prb.yml +++ b/.github/workflows/ci-prb.yml @@ -43,7 +43,7 @@ jobs: run: ./gradlew --no-daemon --parallel clean test - name: Upload Test Results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/ci-prq.yml b/.github/workflows/ci-prq.yml index 18dd0f3c05..30c40098f0 100644 --- a/.github/workflows/ci-prq.yml +++ b/.github/workflows/ci-prq.yml @@ -26,19 +26,19 @@ jobs: run: ./gradlew --parallel clean quality - name: Upload CheckStyle Results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: checkstyle-results-${{ matrix.java }} path: '**/build/reports/checkstyle/*.xml' - name: Upload PMD Results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: pmd-results-${{ matrix.java }} path: '**/build/reports/pmd/*.xml' - name: Upload SpotBugs Results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: spotbugs-results-${{ matrix.java }} path: '**/build/reports/spotbugs/*.xml'