diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4acf88c..3ba20f1 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -58,14 +58,14 @@ jobs: - name: Upload Surefire reports if: matrix.java == '21' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: surefire-reports-${{ matrix.java }} path: target/surefire-reports - name: Upload JaCoCo report if: matrix.java == '21' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: jacoco-report-${{ matrix.java }} path: target/site/jacoco diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index b535213..d935075 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -24,19 +24,19 @@ jobs: - name: Run static quality plugins run: mvn -B -DskipTests checkstyle:check pmd:check spotbugs:check - name: Upload checkstyle report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: checkstyle-report path: target/checkstyle-result.xml if-no-files-found: ignore - name: Upload pmd report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: pmd-report path: target/pmd.xml if-no-files-found: ignore - name: Upload spotbugs report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: spotbugs-report path: target/spotbugsXml.xml