From c5c616a8ede2d0437b57103c44714a882bd86e2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 02:02:37 +0000 Subject: [PATCH] chore(github-actions): bump actions/upload-artifact from 4 to 5 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] --- .github/workflows/check-ci.yml | 4 ++-- .github/workflows/docs-ci.yml | 20 ++++++++++---------- .github/workflows/nightly-check-ci.yml | 8 ++++---- .github/workflows/nightly-docs.yml | 4 ++-- .github/workflows/publish-ci.yml | 2 +- .github/workflows/quick-ci.yml | 2 +- 6 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/check-ci.yml b/.github/workflows/check-ci.yml index c9b001f3110..9ca2929ed51 100644 --- a/.github/workflows/check-ci.yml +++ b/.github/workflows/check-ci.yml @@ -80,7 +80,7 @@ jobs: run: df -h - name: Upload Test Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: check-ci-results @@ -89,7 +89,7 @@ jobs: **/build/reports/tests/** - name: Upload JVM Error Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: check-ci-jvm-err diff --git a/.github/workflows/docs-ci.yml b/.github/workflows/docs-ci.yml index e89aa367d47..dae64bc52f5 100644 --- a/.github/workflows/docs-ci.yml +++ b/.github/workflows/docs-ci.yml @@ -162,7 +162,7 @@ jobs: - name: Upload Javadocs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: javadocs-${{ steps.dhc-version.outputs.version }} path: 'combined-javadoc/build/docs/javadoc/' @@ -224,7 +224,7 @@ jobs: - name: Upload JavaScript/TypeScript docs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: typedoc-${{ steps.dhc-version.outputs.version }} path: 'web/client-api/types/build/documentation/' @@ -286,14 +286,14 @@ jobs: - name: Upload Python Server Docs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: pyserver-docs-${{ steps.dhc-version.outputs.version }} path: 'sphinx/build/docs/' - name: Upload Python Client Docs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: pyclient-docs-${{ steps.dhc-version.outputs.version }} path: 'sphinx/build/pyclient-docs/' @@ -323,7 +323,7 @@ jobs: remote_key: ${{ secrets.DEEPHAVEN_CORE_SSH_KEY }} - name: Upload JVM Error Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: docs-ci-pydoc-jvm-err @@ -368,14 +368,14 @@ jobs: - name: Upload Client C++ Docs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: cppclient-docs-${{ steps.dhc-version.outputs.version }} path: 'sphinx/build/cppClientDocs/' - name: Upload Client C++ Example Docs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: cppclient-examples-${{ steps.dhc-version.outputs.version }} path: 'sphinx/build/cppExamplesDocs/' @@ -442,7 +442,7 @@ jobs: - name: Upload R Docs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: rdoc-${{ steps.dhc-version.outputs.version }} path: 'R/rdeephaven/docs/' @@ -460,7 +460,7 @@ jobs: remote_key: ${{ secrets.DEEPHAVEN_CORE_SSH_KEY }} - name: Upload JVM Error Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() protodoc: @@ -500,7 +500,7 @@ jobs: - name: Upload Protobuf Docs if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: protobuf-docs-${{ steps.dhc-version.outputs.version }} path: 'proto/proto-backplane-grpc/build/protoc-output/proto-doc/single-html/index.html' diff --git a/.github/workflows/nightly-check-ci.yml b/.github/workflows/nightly-check-ci.yml index d6eb467f1b5..feb3c2fba34 100644 --- a/.github/workflows/nightly-check-ci.yml +++ b/.github/workflows/nightly-check-ci.yml @@ -111,7 +111,7 @@ jobs: - name: Upload Coverage Results if: ${{ env.COVER == 'true' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage-${{ matrix.gradle-task }}-results path: | @@ -120,7 +120,7 @@ jobs: **/build/test-results/**/coverage/*.html - name: Upload Test Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: nightly-${{ matrix.gradle-task }}-java${{ matrix.test-jvm-version }}-jetty${{ matrix.jetty-version}}-ci-results @@ -129,7 +129,7 @@ jobs: **/build/reports/tests/** - name: Upload JVM Error Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: nightly-${{ matrix.gradle-task }}-java${{ matrix.test-jvm-version }}-jetty${{ matrix.jetty-version}}-ci-jvm-err @@ -209,7 +209,7 @@ jobs: ./gradlew -Pcoverage.enabled=true coverage:coverage-merge - name: Upload Combined Coverage Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: combined-coverage-results path: | diff --git a/.github/workflows/nightly-docs.yml b/.github/workflows/nightly-docs.yml index 931bce957c2..b3ba57f739c 100644 --- a/.github/workflows/nightly-docs.yml +++ b/.github/workflows/nightly-docs.yml @@ -23,7 +23,7 @@ jobs: - name: Upload error logs if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: snapshot-error-logs path: docs/snapshotter/errors/ @@ -48,7 +48,7 @@ jobs: - name: Upload error logs if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: validator-error-logs path: docs/validator-results/ diff --git a/.github/workflows/publish-ci.yml b/.github/workflows/publish-ci.yml index 4c4763ee867..2334304306b 100644 --- a/.github/workflows/publish-ci.yml +++ b/.github/workflows/publish-ci.yml @@ -89,7 +89,7 @@ jobs: - name: Upload Artifacts if: ${{ startsWith(github.ref, 'refs/heads/release/v') }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: artifacts path: | diff --git a/.github/workflows/quick-ci.yml b/.github/workflows/quick-ci.yml index 59c5654664f..7dfe9f89d50 100644 --- a/.github/workflows/quick-ci.yml +++ b/.github/workflows/quick-ci.yml @@ -62,7 +62,7 @@ jobs: run: ./gradlew --scan spotlessCheck quick - name: Upload JVM Error Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: quick-ci-jvm-err