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