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 176d50d chore(deps): bump actions/upload-artifact from 4 to 5 (#513)
176d50d is described below
commit 176d50dfef6a980ae7e5ddaeb7a450f9098b3f1c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Oct 27 09:13:21 2025 +0100
chore(deps): bump actions/upload-artifact from 4 to 5 (#513)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact)
from 4 to 5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '5'
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 4707ea7..83955de 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@v4
+ uses: actions/upload-artifact@v5
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@v4
+ uses: actions/upload-artifact@v5
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 0b1f070..b0b41d9 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@v4
+ uses: actions/upload-artifact@v5
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@v4
+ uses: actions/upload-artifact@v5
if: success() || failure()
with:
name: "java-test-report-${{ matrix.os }}-java-${{ matrix.java }}"