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 4f438f0  chore(deps): bump actions/upload-artifact from 5 to 6 (#574)
4f438f0 is described below

commit 4f438f06982cd4b6dc3719a728b2cdf9625f7e97
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Dec 15 10:51:57 2025 +0100

    chore(deps): bump actions/upload-artifact from 5 to 6 (#574)
    
    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) 
from 5 to 6.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-version: '6'
      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 2dc879b..21a19f0 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@v5
+        uses: actions/upload-artifact@v6
         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@v5
+        uses: actions/upload-artifact@v6
         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 3ed1b4c..5bd0d6b 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@v5
+        uses: actions/upload-artifact@v6
         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@v5
+        uses: actions/upload-artifact@v6
         if: success() || failure()
         with:
           name: "java-test-report-${{ matrix.os }}-java-${{ matrix.java }}"

Reply via email to