From f79c45810dc8d62484580b62d04b353c454ea256 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:22:20 +0100 Subject: [PATCH 01/28] Add renovate.json (#295) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000000..5db72dd6a9 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} From c93f6f6b4bdf70df3bb41280fbd98a96b99de4b2 Mon Sep 17 00:00:00 2001 From: "mend-bolt-for-github[bot]" <42819689+mend-bolt-for-github[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:22:51 +0100 Subject: [PATCH 02/28] Add .whitesource configuration file (#294) Co-authored-by: mend-bolt-for-github[bot] <42819689+mend-bolt-for-github[bot]@users.noreply.github.com> --- .whitesource | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .whitesource diff --git a/.whitesource b/.whitesource new file mode 100644 index 0000000000..9c7ae90b4e --- /dev/null +++ b/.whitesource @@ -0,0 +1,14 @@ +{ + "scanSettings": { + "baseBranches": [] + }, + "checkRunSettings": { + "vulnerableCheckRunConclusionLevel": "failure", + "displayMode": "diff", + "useMendCheckNames": true + }, + "issueSettings": { + "minSeverityLevel": "LOW", + "issueType": "DEPENDENCY" + } +} \ No newline at end of file From 253a81e22cb594e8220f49190b59f0551aaa9ae8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6tz=20G=C3=B6risch?= Date: Tue, 6 Feb 2024 15:33:29 +0100 Subject: [PATCH 03/28] feat(ci): Adds basic build and test ci workflow (#301) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Götz Görisch --- .github/workflows/maven.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000000..175a396cde --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,33 @@ +--- +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Java CI with Maven + +on: + push: + branches: + pull_request: + branches: [ master, develop ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + java: [ '17' ] + fail-fast: false + name: Java ${{ matrix.java }} build + + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK ${{ matrix.java }} + uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.java }} + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn clean install -DskipTests=false From e6381373c6430bfe240281cfecf8f26148735c6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6tz=20G=C3=B6risch?= <47734341+GoetzGoerisch@users.noreply.github.com> Date: Mon, 21 Jul 2025 14:15:26 +0200 Subject: [PATCH 04/28] fix(ci): update permissions for workflow --- .github/workflows/maven.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 175a396cde..926e1c0ad4 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -3,6 +3,8 @@ # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven name: Java CI with Maven +permissions: + contents: read on: push: From 585a54dd9a46b27703ac468e26d751089312f21a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:36:08 +0000 Subject: [PATCH 05/28] fix(deps): update netty monorepo to v4.2.3.final --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75ae47be7a..d2c2663f3c 100644 --- a/pom.xml +++ b/pom.xml @@ -65,7 +65,7 @@ 2.0.1 4.0.2 4.0.5 - 4.1.121.Final + 4.2.3.Final 1.0.1 2.0.17 1.0.0 From abf1abca70c3e4eeb04d72cb6beb4fc166082b61 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:35:38 +0000 Subject: [PATCH 06/28] chore(deps): update dependency org.apache.maven.plugins:maven-failsafe-plugin to v3.5.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d2c2663f3c..ee33eb56d4 100644 --- a/pom.xml +++ b/pom.xml @@ -80,7 +80,7 @@ 3.14.0 3.1.4 3.5.0 - 3.5.2 + 3.5.3 3.2.7 3.1.4 3.4.2 From 6af4fd0fe55112876ad70eaa1d484ccce2272ffd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:35:45 +0000 Subject: [PATCH 07/28] chore(deps): update dependency org.apache.maven.plugins:maven-site-plugin to v4.0.0-m16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ee33eb56d4..51b8e47768 100644 --- a/pom.xml +++ b/pom.xml @@ -402,7 +402,7 @@ org.apache.maven.plugins maven-site-plugin - 4.0.0-M9 + 4.0.0-M16 org.apache.maven.plugins From c5d5da3a7e62be97d09da2cfc9e79663462caadf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:35:48 +0000 Subject: [PATCH 08/28] chore(deps): update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.5.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 51b8e47768..233a0c4331 100644 --- a/pom.xml +++ b/pom.xml @@ -87,7 +87,7 @@ 3.1.1 3.6.0 3.3.1 - 3.5.2 + 3.5.3 2.18.0 1.7.1 From 4e681112acde6d59f8840189b7880f972b11c19e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:35:58 +0000 Subject: [PATCH 09/28] chore(deps): update dependency com.puppycrawl.tools:checkstyle to v10.26.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 233a0c4331..e8acb8147f 100644 --- a/pom.xml +++ b/pom.xml @@ -72,7 +72,7 @@ 0.7.0 - 10.23.1 + 10.26.1 3.2.0 6.0.0 3.6.0 From b01d9d9be3f975191d902a478d9d25a02850643e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:36:04 +0000 Subject: [PATCH 10/28] chore(deps): update dependency org.mockito:mockito-core to v5.18.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e8acb8147f..3628a56935 100644 --- a/pom.xml +++ b/pom.xml @@ -93,7 +93,7 @@ 5.12.2 - 5.17.0 + 5.18.0 From 2493417e33a8dc1d261f177b2a87a86295324084 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:35:51 +0000 Subject: [PATCH 11/28] chore(deps): update dependency org.xmlunit:xmlunit-core to v2.10.3 --- opc-ua-stack/encoding-xml/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opc-ua-stack/encoding-xml/pom.xml b/opc-ua-stack/encoding-xml/pom.xml index b4c8a5cb66..227a18b3be 100644 --- a/opc-ua-stack/encoding-xml/pom.xml +++ b/opc-ua-stack/encoding-xml/pom.xml @@ -66,7 +66,7 @@ org.xmlunit xmlunit-core - 2.10.0 + 2.10.3 test From a02cafe1e468c10a325fe9f0f83cee59cf1e0ad7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:52:38 +0000 Subject: [PATCH 12/28] chore(deps): update dependency org.codehaus.mojo:jaxb2-maven-plugin to v3.3.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3628a56935..3903900a2e 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 0.7.0 10.26.1 - 3.2.0 + 3.3.0 6.0.0 3.6.0 3.4.1 From 77b4251437c76ad6d33b2ca40c74744c2e2252f7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:51:28 +0000 Subject: [PATCH 13/28] chore(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3.2.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3903900a2e..5917b32e5f 100644 --- a/pom.xml +++ b/pom.xml @@ -81,7 +81,7 @@ 3.1.4 3.5.0 3.5.3 - 3.2.7 + 3.2.8 3.1.4 3.4.2 3.1.1 From abaeb5406bc5fbf576e80c11f3858483aa99729d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:50:39 +0000 Subject: [PATCH 14/28] chore(deps): update dependency com.digitalpetri.opcua:data-type-test to v0.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5917b32e5f..8890273430 100644 --- a/pom.xml +++ b/pom.xml @@ -59,7 +59,7 @@ 1.80 - 0.2 + 0.3 2.13.1 33.4.8-jre 2.0.1 From 5659f7c1a45db73257a80c8c3bd4e143e9a63da5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:51:32 +0000 Subject: [PATCH 15/28] chore(deps): update dependency org.apache.maven.plugins:maven-clean-plugin to v3.5.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8890273430..6906fbee7a 100644 --- a/pom.xml +++ b/pom.xml @@ -76,7 +76,7 @@ 3.3.0 6.0.0 3.6.0 - 3.4.1 + 3.5.0 3.14.0 3.1.4 3.5.0 From b3ab7041cffc585d5de2b83b99785f4812542629 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 13:40:09 +0000 Subject: [PATCH 16/28] chore(deps): update actions/setup-java action to v4.7.1 --- .github/workflows/google-java-format.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/google-java-format.yml b/.github/workflows/google-java-format.yml index a18c1d38df..70eabae7e4 100644 --- a/.github/workflows/google-java-format.yml +++ b/.github/workflows/google-java-format.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Java - uses: actions/setup-java@v4.6.0 + uses: actions/setup-java@v4.7.1 with: distribution: "temurin" java-version: 17 From c8b8005101351b7a7527da1421c7dc8bafac9ecb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 13:39:15 +0000 Subject: [PATCH 17/28] chore(deps): update dependency org.apache.maven.plugins:maven-enforcer-plugin to v3.6.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6906fbee7a..bae30e6ad2 100644 --- a/pom.xml +++ b/pom.xml @@ -79,7 +79,7 @@ 3.5.0 3.14.0 3.1.4 - 3.5.0 + 3.6.1 3.5.3 3.2.8 3.1.4 From 0bb846d67341fd0623c792d2abf4b917acfbdfe0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 13:39:19 +0000 Subject: [PATCH 18/28] chore(deps): update dependency org.sonatype.central:central-publishing-maven-plugin to v0.8.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bae30e6ad2..47773f3444 100644 --- a/pom.xml +++ b/pom.xml @@ -71,7 +71,7 @@ 1.0.0 - 0.7.0 + 0.8.0 10.26.1 3.3.0 6.0.0 From 002b1f0f940d2da871173ad3c0e8aa24ca28ebfa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 23:44:03 +0000 Subject: [PATCH 19/28] fix(deps): update bouncycastle.version to v1.81 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 47773f3444..71135076c4 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ UTF-8 - 1.80 + 1.81 0.3 2.13.1 33.4.8-jre From be296e56a5dd3bc5dd9e0be0580bc2845e241078 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 23:44:07 +0000 Subject: [PATCH 20/28] fix(deps): update junit-framework monorepo to v5.13.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 71135076c4..9d738c4569 100644 --- a/pom.xml +++ b/pom.xml @@ -92,7 +92,7 @@ 1.7.1 - 5.12.2 + 5.13.4 5.18.0 From 26c74a2d7b0b0407cd1488a8c69118981bb7ca70 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:14:28 +0000 Subject: [PATCH 21/28] chore(deps): update dependency org.codehaus.mojo:flatten-maven-plugin to v1.7.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9d738c4569..82a5aac3ea 100644 --- a/pom.xml +++ b/pom.xml @@ -89,7 +89,7 @@ 3.3.1 3.5.3 2.18.0 - 1.7.1 + 1.7.2 5.13.4 From afca37b042900e06a7571b3d65ae591f837dd179 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:12:36 +0000 Subject: [PATCH 22/28] chore(deps): update dependency com.puppycrawl.tools:checkstyle to v11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 82a5aac3ea..def0f71f05 100644 --- a/pom.xml +++ b/pom.xml @@ -72,7 +72,7 @@ 0.8.0 - 10.26.1 + 11.0.0 3.3.0 6.0.0 3.6.0 From 568f02f470f43723a1067b1e0bf7a20c2d150ab9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:12:33 +0000 Subject: [PATCH 23/28] chore(deps): update actions/checkout action to v5 --- .github/workflows/codeql.yml | 2 +- .github/workflows/generate-maven-sbom.yml | 2 +- .github/workflows/google-java-format.yml | 2 +- .github/workflows/maven-release.yml | 2 +- .github/workflows/maven-verify.yml | 2 +- .github/workflows/maven.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3bc64a0d29..260616a972 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -57,7 +57,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Java uses: actions/setup-java@v4 diff --git a/.github/workflows/generate-maven-sbom.yml b/.github/workflows/generate-maven-sbom.yml index 52a8eb3248..44865fbb98 100644 --- a/.github/workflows/generate-maven-sbom.yml +++ b/.github/workflows/generate-maven-sbom.yml @@ -30,7 +30,7 @@ jobs: project-version: ${{ steps.version.outputs.PROJECT_VERSION }} steps: - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: 0 ref: ${{ github.event.workflow_run.head_sha || github.event.inputs.version }} diff --git a/.github/workflows/google-java-format.yml b/.github/workflows/google-java-format.yml index 70eabae7e4..eb77fb33e5 100644 --- a/.github/workflows/google-java-format.yml +++ b/.github/workflows/google-java-format.yml @@ -12,7 +12,7 @@ jobs: formatting: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Java uses: actions/setup-java@v4.7.1 with: diff --git a/.github/workflows/maven-release.yml b/.github/workflows/maven-release.yml index 8ab46c5b5e..7173e637f4 100644 --- a/.github/workflows/maven-release.yml +++ b/.github/workflows/maven-release.yml @@ -8,7 +8,7 @@ jobs: publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Maven Central Repository uses: actions/setup-java@v4 diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 8c26d08cef..012b515f01 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up JDK 17 uses: actions/setup-java@v4 diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 926e1c0ad4..7e455ce0d9 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -24,7 +24,7 @@ jobs: steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v4 with: From 2893c8a75f9e017322d569a6bc2e3557cd567fd6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:12:22 +0000 Subject: [PATCH 24/28] fix(deps): update netty monorepo to v4.2.4.final --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index def0f71f05..66a17d813e 100644 --- a/pom.xml +++ b/pom.xml @@ -65,7 +65,7 @@ 2.0.1 4.0.2 4.0.5 - 4.2.3.Final + 4.2.4.Final 1.0.1 2.0.17 1.0.0 From 8b16cfbb578d11a3e7dc5be819f908d10c4d59a6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:12:28 +0000 Subject: [PATCH 25/28] chore(deps): update dependency org.mockito:mockito-core to v5.19.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 66a17d813e..c6424fe0c2 100644 --- a/pom.xml +++ b/pom.xml @@ -93,7 +93,7 @@ 5.13.4 - 5.18.0 + 5.19.0 From d5654e06e2208c5174680c9b91f8d2bbcf9f6752 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:33:33 +0000 Subject: [PATCH 26/28] chore(deps): update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.11.3 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c6424fe0c2..87cc2a4e9c 100644 --- a/pom.xml +++ b/pom.xml @@ -104,7 +104,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.11.2 + 3.11.3 none false @@ -171,7 +171,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.11.2 + 3.11.3 none false From 0cf6e67440c911b673f73e2ae7558881ac1988da Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 07:15:24 +0000 Subject: [PATCH 27/28] chore(deps): update actions/setup-java action to v4.7.1 --- .github/workflows/generate-maven-sbom.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate-maven-sbom.yml b/.github/workflows/generate-maven-sbom.yml index 44865fbb98..4914bf1703 100644 --- a/.github/workflows/generate-maven-sbom.yml +++ b/.github/workflows/generate-maven-sbom.yml @@ -36,7 +36,7 @@ jobs: ref: ${{ github.event.workflow_run.head_sha || github.event.inputs.version }} - name: Setup Java SDK - uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 + uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1 with: java-version: ${{ env.JAVA_VERSION }} distribution: ${{ env.JAVA_DISTRO }} From 02d6304c27b069507f69eae657b7921d73177ed4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 31 Aug 2025 10:12:01 +0000 Subject: [PATCH 28/28] fix(deps): update dependency org.eclipse.milo:milo-examples to v1.0.5 --- milo-examples/client-examples/pom.xml | 2 +- milo-examples/server-examples/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/milo-examples/client-examples/pom.xml b/milo-examples/client-examples/pom.xml index b4f97b9eb3..4492467bf0 100644 --- a/milo-examples/client-examples/pom.xml +++ b/milo-examples/client-examples/pom.xml @@ -17,7 +17,7 @@ org.eclipse.milo milo-examples - 1.0.4-SNAPSHOT + 1.0.5 Milo :: Client Examples diff --git a/milo-examples/server-examples/pom.xml b/milo-examples/server-examples/pom.xml index 52fd8b4a5f..5e4c04d714 100644 --- a/milo-examples/server-examples/pom.xml +++ b/milo-examples/server-examples/pom.xml @@ -17,7 +17,7 @@ org.eclipse.milo milo-examples - 1.0.4-SNAPSHOT + 1.0.5 Milo :: Server Examples