This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x-extras.git


The following commit(s) were added to refs/heads/develop by this push:
     new 5f9bb15  chore(deps): bump actions/upload-artifact from 6 to 7 (#634)
5f9bb15 is described below

commit 5f9bb1524774960fd33b2a08b86dfe70a8ebb155
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Feb 27 14:00:41 2026 +0100

    chore(deps): bump actions/upload-artifact from 6 to 7 (#634)
    
    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) 
from 6 to 7.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](https://github.com/actions/upload-artifact/compare/v6...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] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/go-platform.yml   | 4 ++--
 .github/workflows/java-platform.yml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/go-platform.yml 
b/.github/workflows/go-platform.yml
index 4194df8..f4a1a93 100644
--- a/.github/workflows/go-platform.yml
+++ b/.github/workflows/go-platform.yml
@@ -172,7 +172,7 @@ jobs:
           ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{ 
steps.extra_options.outputs.extra_options }} -B -Pwith-go ${{ 
steps.platform_opts.outputs.platform_opts }} install
 
       - name: Upload Test Report (first failure)
-        uses: actions/upload-artifact@v6
+        uses: actions/upload-artifact@v7
         if: failure()
         with:
           name: "golang-test-report-first-failure-${{ matrix.os }}"
@@ -181,7 +181,7 @@ jobs:
             **/reports/test-out-verbose.log
 
       - name: Upload Test Report
-        uses: actions/upload-artifact@v6
+        uses: actions/upload-artifact@v7
         if: success() || failure()
         with:
           name: "golang-test-report-${{ matrix.os }}"
diff --git a/.github/workflows/java-platform.yml 
b/.github/workflows/java-platform.yml
index 061a8d1..e2a35c6 100644
--- a/.github/workflows/java-platform.yml
+++ b/.github/workflows/java-platform.yml
@@ -125,7 +125,7 @@ jobs:
           ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{ 
steps.extra_options.outputs.extra_options }} -B -Pwith-java ${{ 
steps.platform_opts.outputs.platform_opts }} install
 
       - name: Upload Test Report (first failure)
-        uses: actions/upload-artifact@v6
+        uses: actions/upload-artifact@v7
         if: failure()
         with:
           name: "java-test-report-first-failure-${{ matrix.os }}-java-${{ 
matrix.java }}"
@@ -134,7 +134,7 @@ jobs:
             **/failsafe-reports/TEST-*.xml
 
       - name: Upload Test Report
-        uses: actions/upload-artifact@v6
+        uses: actions/upload-artifact@v7
         if: success() || failure()
         with:
           name: "java-test-report-${{ matrix.os }}-java-${{ matrix.java }}"

Reply via email to