From a5f2da4393d424541e411e1dc04f3b17812c5a93 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 26 Nov 2025 18:36:30 +0000 Subject: [PATCH] Update GitHub Artifact Actions --- .github/workflows/component-build.yml | 4 ++-- .github/workflows/main-build.yml | 2 +- .github/workflows/pull-request-gate.yml | 2 +- .github/workflows/release-build.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/component-build.yml b/.github/workflows/component-build.yml index ba8ae4cd..0390ba28 100644 --- a/.github/workflows/component-build.yml +++ b/.github/workflows/component-build.yml @@ -22,7 +22,7 @@ jobs: - name: Build with Gradle run: ./gradlew check - name: Upload build results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-artifact path: | @@ -31,7 +31,7 @@ jobs: **/build/reports/jacoco/test/*.xml **/build/asciidoc/** - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test-artifact path: | diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index c643c63a..216c704b 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -25,7 +25,7 @@ jobs: distribution: 'temurin' architecture: x64 - name: Download build artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-artifact - name: Quality gate diff --git a/.github/workflows/pull-request-gate.yml b/.github/workflows/pull-request-gate.yml index 8831363f..96427ff3 100644 --- a/.github/workflows/pull-request-gate.yml +++ b/.github/workflows/pull-request-gate.yml @@ -24,7 +24,7 @@ jobs: distribution: 'temurin' architecture: x64 - name: Download build artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-artifact - name: Quality gate diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index c1c0bd5e..09110b2e 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -24,7 +24,7 @@ jobs: distribution: 'temurin' architecture: x64 - name: Download build artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: build-artifact - name: Publish artifacts