From c7c7e9b26e8fa74a98b4565b5635d92c97194ff6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 21:54:58 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/maven.yml | 4 ++-- .github/workflows/quality.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) 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