From 606fd19d42d370a907dbc96036a31489871eae5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 12:25:10 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4.6.2 to 7.0.1 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 7.0.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/ea165f8d65b6e75b540449e92b4886f43607fa02...043fb46d1a93c77aae656e7c1c64a875d1fc6a0a) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.1 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 04e4f1e..ea6bbd6 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -57,14 +57,14 @@ jobs: - name: Upload Surefire reports if: matrix.java == '21' - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: surefire-reports-${{ matrix.java }} path: target/surefire-reports - name: Upload JaCoCo report if: matrix.java == '21' - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: jacoco-report-${{ matrix.java }} path: target/site/jacoco diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 0895aca..780956c 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -25,19 +25,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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: checkstyle-report path: target/checkstyle-result.xml if-no-files-found: ignore - name: Upload pmd report - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: pmd-report path: target/pmd.xml if-no-files-found: ignore - name: Upload spotbugs report - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: spotbugs-report path: target/spotbugsXml.xml