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.git
The following commit(s) were added to refs/heads/develop by this push:
new fe46e953c1 build(deps): bump actions/upload-artifact from 5 to 6
(#2396)
fe46e953c1 is described below
commit fe46e953c13617eaa67fb11ad28c256e2fa67a4c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Dec 15 10:50:56 2025 +0100
build(deps): bump actions/upload-artifact from 5 to 6 (#2396)
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 ba34e4044d..6d1d669e88 100644
--- a/.github/workflows/go-platform.yml
+++ b/.github/workflows/go-platform.yml
@@ -176,7 +176,7 @@ jobs:
./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{
steps.extra_options.outputs.extra_options }} -B
-P'with-go,enable-all-checks,update-generated-code' -pl :plc4go -am ${{
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 }}"
@@ -189,7 +189,7 @@ jobs:
run: ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{
steps.extra_options.outputs.extra_options }} -B
-P'with-go,skip-bacnet-regression-test,update-generated-code' -pl :plc4go -am
${{ steps.platform_opts.outputs.platform_opts }} install
- 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 1c90b0eca1..dbf67b6643 100644
--- a/.github/workflows/java-platform.yml
+++ b/.github/workflows/java-platform.yml
@@ -129,7 +129,7 @@ jobs:
./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{
steps.extra_options.outputs.extra_options }} -B
-P'with-java,enable-all-checks,update-generated-code' ${{
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 }}"
@@ -142,7 +142,7 @@ jobs:
run: ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{
steps.extra_options.outputs.extra_options }} -B
-P'with-java,skip-bacnet-regression-test,update-generated-code' ${{
steps.platform_opts.outputs.platform_opts }} install
- 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 }}"